Fetch a call
GET/v2/activities/calls/:id
Fetches a call, by ID only.
Request
Path Parameters
Call ID
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
ID of Call
Phone number that received the call
Length of the call in seconds
Outcome of the conversation
Result of the call
Datetime of when the call was created
Datetime of when the call was last updated
recordings object[]
The recordings for this this call and their status
The url of the recording
The status of the call that produced this recording. Possible values are (but not limited to):
no-answer: The call was not answered
failed: The call was not able to be placed
busy: The call was busy
ringing: The call is ringing
in-progress: The call is ongoing
completed: The call is finished
The processing status of the recording. Possible values are (but not limited to):
not_recorded: there is no recording available, and there will not be one becoming available
pending: the recording is currently being processed by the system
processing: the recording is currently being processed by the system
completed: the recording processing has been completed
user object
User that made the call
action object
Action associated to the call
task object
Task that this call was loged from, or null if not sent through a cadence
called_person object
The person called
crm_activity object
CRM Activity associated with the call
note object
Note for this call
cadence object
Cadence the call was made on
step object
Step the call was made on
{
"id": 1,
"to": "7705551234",
"duration": 60,
"sentiment": "Demo Scheduled",
"disposition": "Connected",
"created_at": "2024-01-01T00:00:00.000000+00:00",
"updated_at": "2024-01-01T00:00:00.000000+00:00",
"recordings": [
{
"url": "https://example.com/recording1",
"recording_status": "completed",
"status": "completed"
}
],
"user": {
"id": 1,
"_href": "https://api.salesloft.com/v2/users/1"
},
"action": {
"id": 1
},
"task": {
"id": 1
},
"called_person": {
"id": 1,
"_href": "https://api.salesloft.com/v2/people/1"
},
"crm_activity": {
"id": 1,
"_href": "https://api.salesloft.com/v2/crm_activities/1"
},
"note": {
"id": 1,
"_href": "https://api.salesloft.com/v2/notes/1"
},
"cadence": {
"id": 1,
"_href": "https://api.salesloft.com/v2/cadences/1"
},
"step": {
"id": 1,
"_href": "https://api.salesloft.com/v2/steps/1"
}
}