Calls
Trigger async export of calls CSV to requester email
Calls
- GETGet Calls
- GETGet Call
- GETGet Transcript
- GETGet current page
- GETList Call tags
- GETReturn a pre-signed URL to the call recording
- GETReturn the logs for a call
- GETGet the usage for the given organization
- POSTStop Call
- POSTCancel Call
- POSTAdd a note to a call
- POSTTrigger async export of calls CSV to requester email
- PATCHUpdate a note on a call
- PATCHSet call as viewed by the user making the request
- PATCHSet call rating
- DELDelete a note from a call
- DELDelete a call
Dial
Orgs
Numbers
Usecases
Agents
Calls
Trigger async export of calls CSV to requester email
Triggers an asynchronous process to export call data to a CSV file and send it to the requester’s email.
POST
/
calls-export
curl --request POST \
--url https://app.happyrobot.ai/api/v1/calls-export \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"email": "jsmith@example.com",
"type": "Inbound",
"limit": 2000,
"skip": "<string>",
"statuses": "<string>",
"tags": "<string>",
"models": "<string>",
"ratings": "<string>",
"use_cases": "<string>",
"from": "2024-01-01T01:01:01Z",
"to": "2024-01-01T01:01:01Z",
"campaigns": "<string>",
"transfer_contact_email": "<string>"
}'
This response does not have an example.
Headers
Your API key for authentication. Use Bearer format.
Example:
"Bearer API_KEY"
Body
application/json
Body
The body is of type object
.
Response
200
200
Was this page helpful?
curl --request POST \
--url https://app.happyrobot.ai/api/v1/calls-export \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"email": "jsmith@example.com",
"type": "Inbound",
"limit": 2000,
"skip": "<string>",
"statuses": "<string>",
"tags": "<string>",
"models": "<string>",
"ratings": "<string>",
"use_cases": "<string>",
"from": "2024-01-01T01:01:01Z",
"to": "2024-01-01T01:01:01Z",
"campaigns": "<string>",
"transfer_contact_email": "<string>"
}'
This response does not have an example.