Retrieve information about a Fin Voice call using the external call identifier.
Security
bearerAuth
- The production API serverhttps://api.intercom.io/fin_voice/external_id/{external_id}
- The european API serverhttps://api.eu.intercom.io/fin_voice/external_id/{external_id}
- The australian API serverhttps://api.au.intercom.io/fin_voice/external_id/{external_id}
curl -i -X GET \
'https://api.intercom.io/fin_voice/external_id/{external_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'successful
Status of the call. Can be "registered", "in-progress", or a resolution state
Example:"registered"
The Intercom call identifier, if the call has been matched
Example:"1234"
The Intercom conversation identifier, if a conversation has been created
Example:"5678"
Summary of the call conversation, truncated to 256 characters. Empty string if no summary available.
Example:"Customer called about billing issue..."
The conversation attributes Fin classified on this call, as attribute name to value. Empty object when the number has no classification attributes configured or none were set.
Example:
{ "Intent Type": "Sales", "Sales Category": "Enterprise Sales" }
Response
{ "id": 12345, "app_id": 12345, "user_phone_number": "+1234567890", "status": "registered", "intercom_call_id": "1234", "external_call_id": "call-123-abc", "intercom_conversation_id": "5678", "call_transcript": [], "call_summary": "Customer called about billing issue...", "intent": [], "attributes": { "Intent Type": "Sales", "Sales Category": "Enterprise Sales" }, "data": { "masterContactID": "abc123", "DNIS": "+18005551212" } }