Skip to main content
POST
/
tag
add or remove tags on an entity
curl --request POST \
  --url http://localhost:3917/tag \
  --header 'Content-Type: application/json' \
  --data '
{
  "add": [
    "stealth"
  ],
  "entity_id": 5,
  "remove": [
    "revealed"
  ]
}
'
{
  "ok": true,
  "message": "<string>"
}

Body

application/json

Entity id plus tags to add and/or remove.

The body is of type any.

Response

200 - application/json

Tags updated on the entity.

ok
boolean
required
message
string | null