Returns the metadata for a single stored third-party credential. A credential that the list endpoint does not return is also not retrievable here, and responds with 404.
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/{id}
- The european API serverhttps://api.eu.intercom.io/auth_tokens/{id}
- The australian API serverhttps://api.au.intercom.io/auth_tokens/{id}
curl -i -X GET \
https://api.intercom.io/auth_tokens/12345 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: Preview'successful
An optional description of what the credential is used for.
Example:"Used by the order status connector"
How the credential is presented to the external API, for example as a header value or an HMAC signature.
Example:"header"
The request header the credential is sent in.
Example:"Authorization"
The domain the credential is scoped to, if one was set.
Example:"api.fulfilment.example.com"
The time the credential was created, as an ISO 8601 timestamp.
Example:"2025-11-15T09:30:00Z"
Response
{ "type": "auth_token", "id": "12345", "name": "Fulfilment API key", "description": "Used by the order status connector", "token_type": "header", "request_header_key": "Authorization", "domain": "api.fulfilment.example.com", "created_at": "2025-11-15T09:30:00Z", "updated_at": "2026-01-20T14:22:15Z" }