Method | Description | |
---|---|---|
Find ( |
Finds all calls sent or received by the user, filtered by different properties, broadcast id, toNumber, fromNumber, label, state, etc.Use "campaignId=0" parameter to query for all calls sent through the POST /calls API {@link CallsApi#send(List)}.
|
|
Get ( long id, string fields = null ) : Call |
Get call by id
|
|
GetCallRecording ( long id, string fields = null ) : |
Returns call recording by id
|
|
GetCallRecordingByName ( long callId, string recordingName, string fields = null ) : |
Returns call recording by name
|
|
GetCallRecordingMp3 ( long id ) : |
Download call mp3 recording by id
|
|
GetCallRecordingMp3ByName ( long callId, string recordingName ) : |
Download call mp3 recording by name
|
|
GetCallRecordings ( long id, string fields = null ) : IList |
Returns call recordings for a call
|
|
Send ( IList |
Send calls to recipients through default campaign. Use the API to quickly send individual calls. A verified Caller ID and sufficient credits are required to make a call.
|
|
Send ( |
Send calls to recipients through default campaign. Use the API to quickly send individual calls. A verified Caller ID and sufficient credits are required to make a call.
|
Method | Description | |
---|---|---|
CallsApi ( RestApiClient client ) : System.Collections.Generic |
public Find ( |
||
request | request object with different fields to filter | |
return | Page |
public Get ( long id, string fields = null ) : Call | ||
id | long | id of call |
fields | string | limit fields returned. Example fields=id,name |
return | Call |
public GetCallRecording ( long id, string fields = null ) : |
||
id | long | id of call recording |
fields | string | limit fields returned. Example fields=id,name |
return |
public GetCallRecordingByName ( long callId, string recordingName, string fields = null ) : |
||
callId | long | id of call |
recordingName | string | name of call recording |
fields | string | limit fields returned. Example fields=id,name |
return |
public GetCallRecordingMp3 ( long id ) : |
||
id | long | id of call |
return |
public GetCallRecordingMp3ByName ( long callId, string recordingName ) : |
||
callId | long | id of call |
recordingName | string | name of call recording |
return |
public GetCallRecordings ( long id, string fields = null ) : IList |
||
id | long | id of call |
fields | string | Limit text fields returned. Example fields=limit,offset,items(id,message) |
return | IList |
public Send ( IList |
||
recipients | IList |
call recipients |
campaignId | long | specify a campaignId to send calls quickly on a previously created campaign |
fields | string | limit fields returned. Example fields=id,name |
return | IList |
public Send ( |
||
request | request object with different fields to filter | |
return | IList |