Intercom API (2.7)
The intercom API reference.
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.7' \
-d '{
"id": 2
}'
Response
application/json
{ "type": "tag", "id": "2", "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.7'
Response
application/json
{ "type": "tag", "id": "5", "name": "Manual tag" }