Returns a paginated list of the workspace's stored third-party credentials. Use this to discover the id of a credential you want a data connector to authenticate with — that id is not otherwise available over REST. Only metadata is returned; credential values are never exposed. The list is not exhaustive: credentials a teammate created are listed, as are those created by some Intercom integrations, but credentials installed by an app package, those created by most other integrations, and those minted for an individual teammate's MCP access are not.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"Preview"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:Preview
- The production API serverhttps://api.intercom.io/auth_tokens
- The european API serverhttps://api.eu.intercom.io/auth_tokens
- The australian API serverhttps://api.au.intercom.io/auth_tokens
curl -i -X GET \
'https://api.intercom.io/auth_tokens?per_page=20&starting_after=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: Preview'successful
dataArray of objects(Auth Token)
An array of auth token objects.
Response
{ "type": "list", "data": [ { … } ], "pages": { "type": "pages", "per_page": 20, "next": { … } } }