Home//
REST API Reference
/- Remove tag from a ticket
Reply to a ticket
Add tag to a ticket
Link a conversation to a ticket
Unlink a conversation from a ticket
Create a ticket
Enqueue create ticket
Update a ticket
Retrieve a ticket
Delete a ticket
Change ticket type
Search tickets
Ticket
Contacts
Ticket Part
Ticket State
Ticket State
Ticket Type
Remove tag from a ticket
You can remove tag from a specific ticket. This will return a tag object for the tag that was removed from the ticket.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.16"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.16
- The production API serverhttps://api.intercom.io/tickets/{ticket_id}/tags/{tag_id}
- The european API serverhttps://api.eu.intercom.io/tickets/{ticket_id}/tags/{tag_id}
- The australian API serverhttps://api.au.intercom.io/tickets/{ticket_id}/tags/{tag_id}
- successful
- Ticket not found
- Tag not found
curl -i -X DELETE \
https://api.intercom.io/tickets/64619700005694/tags/7522907 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: 2.16' \
-d '{
"admin_id": 991267973
}'successful
The time when the tag was applied to the object. Only present when the tag is returned as part of a tagging operation on a contact, conversation, or ticket.
Example:1663597223
applied_byobject or null(Reference)
The admin who applied the tag. Only present when the tag is returned as part of a tagging operation on a contact, conversation, or ticket.
Response
{ "type": "tag", "id": "124", "name": "Manual tag", "applied_at": 1663597223, "applied_by": { "type": "admin", "id": "456" } }