provider Contacts GET
/contacts/{contact_id} @utdk/intercom
/contacts/{contact_id} Get a contact
You can fetch the details of a single contact.
{% admonition type="warning" name="Merged contacts" %}
If a contact has been merged into another contact via the Merge endpoint (POST /contacts/merge), requesting it by its original ID will return a `404 Not Found` error. Use the merged-into contact's ID instead.
{% /admonition %}
- Intercom-Version header
- enum: 1.0, 1.1, 1.2, 1.3…
- contact_id path required
- contact_id
- string
Try it
Authentication
Configure credentials for Intercom API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import intercom from '@utdk/intercom';
await intercom.showcontact({
"Intercom-Version": "2.14"
})