curl --request PUT \
--url https://api.open.cx/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tag_name": "<string>",
"exclude_from_auto_tagging": true
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Create a new tag or update an existing one. If a tag with this name already exists, it will be updated. Use exclude_from_auto_tagging to prevent the AI from auto-applying this tag.
curl --request PUT \
--url https://api.open.cx/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tag_name": "<string>",
"exclude_from_auto_tagging": true
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response
Was this page helpful?