Skip to content

Remove a tag from a content snippet

Request

Remove a tag from a content snippet. Returns the tag that was removed, with null applied_at and applied_by.

The authenticating teammate must have the manage_knowledge_base_content permission.

Requires the read_write_content_snippets OAuth scope. Set Intercom-Version: Preview.

Security
bearerAuth
Path
content_snippet_idstringrequired

The unique identifier for the content snippet.

Example:123
idstringrequired

The unique identifier of the tag to remove, as given by Intercom.

Example:7522907
Headers
Intercom-Versionstring(intercom_version_preview)

Preview Intercom API version. Used for closed beta endpoints or other features under managed availability.

Default:"Preview"
Value:"Preview"
Example:Preview
curl -i -X DELETE \
  https://api.intercom.io/content_snippets/123/tags/7522907 \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Intercom-Version: Preview'

Responses

Tag removed

Bodyapplication/json
typestring

value is "tag"

Example:"tag"
idstring

The id of the tag

Example:"123456"
namestring

The name of the tag

Example:"Test tag"
applied_atinteger or null, (date-time)

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, ticket, article, internal article, or content snippet.

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, ticket, article, internal article, or content snippet.

Response
{ "type": "tag", "id": "7522907", "name": "Independent", "applied_at": null, "applied_by": null }