PUT
/
v0
/
documents
/
{id}
/
tags
Update document tags
curl --request PUT \
  --url https://api.avidoai.com/v0/documents/{id}/tags \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "tagIds": [
    "123e4567-e89b-12d3-a456-426614174000",
    "456e4567-e89b-12d3-a456-426614174000"
  ]
}'
"<any>"

Authorizations

x-api-key
string
header
required

Your unique Avido API key

Path Parameters

id
string<uuid>
required

The unique identifier of the document

Example:

"123e4567-e89b-12d3-a456-426614174000"

Body

application/json

Request body for updating document tags

Response

Document tags updated successfully

The response is of type any.