Home//
REST API Reference
/- Discover Fin's capabilities
Ask Fin
Reply to Fin
Run a Fin procedure
Escalate to a human
Submit a CSAT rating
Start a conversation with Fin
Fin Agent Attachment
Fin Agent Attribute Errors
Fin Agent Conversation Metadata
Fin Agent CSAT Requested Event
Fin Agent Message
Fin Agent Replied Event
Fin Agent Reply Chunk Event
Fin Agent Settings
Fin Agent Status Updated Event
Fin Agent User
Discover Fin's capabiliti...
Return a machine-readable, per-user list of what Fin can do for a given end user, so an orchestrating agent can decide which endpoint to call.
The response is audience-matched to the supplied user: each live, API-triggerable procedure is checked against that user before being included, alongside the static reply and ask actions.
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/fin/capabilities
- The european API serverhttps://api.eu.intercom.io/fin/capabilities
- The australian API serverhttps://api.au.intercom.io/fin/capabilities
curl -i -X POST \
https://api.intercom.io/fin/capabilities \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: Preview' \
-d '{
"user": {
"id": "123456"
}
}'Response
{ "version": "Preview", "capabilities": [ { … }, { … }, { … } ] }