curl --request GET \
--url https://app.happyrobot.ai/api/v1/calls/{id}/transcript \
--header 'authorization: <authorization>'
{
"id": "<string>",
"organization_id": "<string>",
"call_id": "<string>",
"start_time": 123,
"messages": [
{
"id": "<string>",
"role": "system",
"content": "<string>",
"tool_calls": [
{
"type": "<string>",
"id": "<string>",
"function": {
"name": "<string>",
"arguments": "<string>"
}
}
],
"name": "<string>",
"tool_call_id": "<string>",
"start": 123,
"end": 123,
"unpreferred_messages": [
{
"id": "<string>",
"content": "<string>",
"tool_calls": [
{
"type": "<string>",
"id": "<string>",
"function": {
"name": "<string>",
"arguments": "<string>"
}
}
]
}
],
"interrupted_thoughts": "<string>",
"is_filler": true,
"discard": false,
"transfer_contact": {
"type": "Sales Rep",
"name": "<string>",
"email": "<string>",
"phone": {
"number": "<string>",
"extension": "<string>"
},
"contact_id": "<string>",
"slack_channel_id": "<string>"
}
}
]
}
Returns the transcript for a call.
curl --request GET \
--url https://app.happyrobot.ai/api/v1/calls/{id}/transcript \
--header 'authorization: <authorization>'
{
"id": "<string>",
"organization_id": "<string>",
"call_id": "<string>",
"start_time": 123,
"messages": [
{
"id": "<string>",
"role": "system",
"content": "<string>",
"tool_calls": [
{
"type": "<string>",
"id": "<string>",
"function": {
"name": "<string>",
"arguments": "<string>"
}
}
],
"name": "<string>",
"tool_call_id": "<string>",
"start": 123,
"end": 123,
"unpreferred_messages": [
{
"id": "<string>",
"content": "<string>",
"tool_calls": [
{
"type": "<string>",
"id": "<string>",
"function": {
"name": "<string>",
"arguments": "<string>"
}
}
]
}
],
"interrupted_thoughts": "<string>",
"is_filler": true,
"discard": false,
"transfer_contact": {
"type": "Sales Rep",
"name": "<string>",
"email": "<string>",
"phone": {
"number": "<string>",
"extension": "<string>"
},
"contact_id": "<string>",
"slack_channel_id": "<string>"
}
}
]
}
Your API key for authentication. Use Bearer format.
"Bearer API_KEY"
ID of the call.
24
200
The response is of type object
.
Was this page helpful?