Skip to main content
POST
/
plaud
/
files
/
update-tags
Assign or clear a tag
curl --request POST \
  --url https://{deployment}/api/v1/plaud/files/update-tags \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "file_id_list": [
    "ceb63f88"
  ],
  "filetag_id": "tag_abc123"
}
'
{
  "error": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY). Your Plaud account credentials are stored server-side — you do not send them.

Body

application/json
file_id_list
string[]
required
Minimum array length: 1
filetag_id
string

Tag id to assign. Empty string clears the tag from each file.

Response

Tags updated