The intercom API reference.
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/teams
- The european API server
https://api.eu.intercom.io/teams
- The australian API server
https://api.au.intercom.io/teams
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X GET \
https://api.intercom.io/teams \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'
Response
application/json
{ "type": "team.list", "teams": [] }
- The production API server
https://api.intercom.io/teams/{id}
- The european API server
https://api.eu.intercom.io/teams/{id}
- The australian API server
https://api.au.intercom.io/teams/{id}
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X GET \
https://api.intercom.io/teams/123 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'
Response
application/json
{ "type": "team", "id": "991267661", "name": "team 1", "admin_ids": [] }