Sign in

Edit document fields

documented

Add, update, or modify fillable fields on a document.

PUT /document/{document_id}Documentsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.signnow.com/document/{{$document_id}}" \
  -X PUT \\
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \\
  -H "Content-Type: application/json" \\
  -H "Accept: application/json" \\
  -d '{ "fields": [ { "x": {{$field1_x}}, "y": {{$field1_y}}, "width": {{$field1_width}}, "height": {{$field1_height}}, "page_number": {{$field1_page_number}}, "label": "{{$field1_label}}", "role": "Signer", "required": {{$field1_required}}, "type": "text", "prefilled_text": "{{$field1_prefilled_text}}" }, { "x": {{$field2_x}}, "y": {{$field2_y}}, "width": {{$field2_width}}, "height": {{$field2_height}}, "page_number": {{$field2_page_number}}, "label": "{{$field2_label}}", "role": "Signer", "required": {{$field2_required}}, "type": "signature" }, { "x": {{$field3_x}}, "y": {{$field3_y}}, "width": {{$field3_width}}, "height": {{$field3_height}}, "page_number": {{$field3_page_number}}, "label": "{{$field3_label}}", "role": "Signer", "required": {{$field3_required}}, "type": "text" } ] }'