Sign in

Update document tags

documented

Update the tags on a given document; all old tags are removed.

POST /public/v2/documents/{id}/update_tagsDocumentsno 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.rightsignature.com/public/v2/documents/{{$document_id}}/update_tags" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"tags": {"{{$tag1_key}}": "{{$tag1_value}}", "{{$tag2_key}}": "{{$tag2_value}}"}, "document": {"tags": {"{{$tag1_key}}": "{{$tag1_value}}", "{{$tag2_key}}": "{{$tag2_value}}"}}}'
Update document tags · rightsignature · OpenIntegrations