Calls

Operations related to calls

Get all Calls

get

Returns a list of calls with pagination support.

Authorizations
x-api-keystringRequired
Query parameters
pagenumberOptional

Page number to retrieve.

limitnumberOptional

Number of items per page.

namestringOptional

Call name to filter calls by (partial match).

Responses
chevron-right
200Success
application/json
get
/api/v1/calls

Upload Call

post

Uploads a call. You can either provide a mediaUrl in the body or upload a file directly.

Authorizations
x-api-keystringRequired
Body
namestringRequired

Name of the call for uploading

Example: Sales Call Recording
mediaUrlstringOptional

URL of the media file to upload (alternative to file upload)

Example: https://example.com/upload/call_recording.mp3
startDateTimestring · date-timeRequired

Scheduled start date and time of the call

Example: 2024-07-18T14:00:00.000Z
descriptionstringOptional

Description of the call

Example: Recording of the sales call with Acme Corp.
fromNumberstringOptional

Phone number of the caller

Example: +1234567890
toNumberstringOptional

Phone number of the callee

Example: +0987654321
filestring · binaryOptional

Audio file to upload (alternative to mediaUrl). It must be a valid mp3 / wav file

ownerIdstringOptional

ID of the user who owns this call

Example: 5516cd47-2bd0-4f4f-adc2-22524e54ba4d
personIdsstring[]Optional

Array of person IDs for this call participants. Use comma to separate the values

Example: ["5516cd47-2bd0-4f4f-adc2-22524e54ba4d"]
Responses
post
/api/v1/calls/upload

Get Call by ID

get

Get a call by ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to retrieve.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}

Delete Call

delete

Deletes a call by ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to delete.

Responses
chevron-right
200Success
application/json
delete
/api/v1/calls/{id}

Get Call Participants

get

Returns a list of participants for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get participants from.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/participants

Get Call Summary

get

Returns a summary for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get summary from.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/summary

Get Call Transcript

get

Returns a transcript for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get transcript from.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/transcript

Get Call Notes

get

Returns a list of notes for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get notes from.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/notes

Get Call Chat

get

Returns a chat for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get chat from.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/chat

Get Call Contacts

get

Returns a list of contacts for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get contacts from.

Query parameters
pagenumberOptional

Page number to retrieve.

limitnumberOptional

Number of items per page.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/contacts

Get Call Companies

get

Returns a list of companies for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get companies from.

Query parameters
pagenumberOptional

Page number to retrieve.

limitnumberOptional

Number of items per page.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/companies

Get Call Opportunities

get

Returns a list of opportunities for a given call ID.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

Call ID to get opportunities from.

Query parameters
pagenumberOptional

Page number to retrieve.

limitnumberOptional

Number of items per page.

Responses
chevron-right
200Success
application/json
get
/api/v1/calls/{id}/opportunities

Last updated

Was this helpful?