The intercom API reference.
Home//
REST API Reference
/- Add tag to a contact
Contact
List attached contacts
Attach a Contact to a Company
List attached companies for contact
Detach a contact from a company
List all notes
Create a note
List attached segments for contact
List subscriptions for a contact
Add subscription to a contact
Remove subscription from a contact
List tags attached to a contact
Remove tag from a contact
Update a contact
Get a contact
Delete a contact
Merge a lead and a user
Search contacts
List all contacts
Create contact
Archive contact
Unarchive contact
Add tag to a contact
Intercom API (2.9)
Download OpenAPI description
Overview
URL
License
Languages
Servers
The production API server
https://api.intercom.io/
The european API server
https://api.eu.intercom.io/
The australian API server
https://api.au.intercom.io/
- The production API server
https://api.intercom.io/contacts/{contact_id}/tags
- The european API server
https://api.eu.intercom.io/contacts/{contact_id}/tags
- The australian API server
https://api.au.intercom.io/contacts/{contact_id}/tags
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/contacts/63a07ddf05a32042dffac965/tags \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: 2.9' \
-d '{
"id": 84
}'
Response
application/json
{ "type": "tag", "id": "84", "name": "Manual tag" }
- The production API server
https://api.intercom.io/contacts/{contact_id}/tags/{id}
- The european API server
https://api.eu.intercom.io/contacts/{contact_id}/tags/{id}
- The australian API server
https://api.au.intercom.io/contacts/{contact_id}/tags/{id}
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X DELETE \
https://api.intercom.io/contacts/63a07ddf05a32042dffac965/tags/7522907 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'
Response
application/json
{ "type": "tag", "id": "87", "name": "Manual tag" }