Skip to content

Latest commit

 

History

History
112 lines (63 loc) · 5.31 KB

Api20100401PayloadApi.md

File metadata and controls

112 lines (63 loc) · 5.31 KB

\Api20100401PayloadApi

All URIs are relative to https://api.twilio.com

Method HTTP request Description
delete_recording_add_on_result_payload DELETE /2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{AddOnResultSid}/Payloads/{Sid}.json
fetch_recording_add_on_result_payload GET /2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{AddOnResultSid}/Payloads/{Sid}.json
list_recording_add_on_result_payload GET /2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{AddOnResultSid}/Payloads.json

delete_recording_add_on_result_payload

delete_recording_add_on_result_payload(account_sid, reference_sid, add_on_result_sid, sid)

Delete a payload from the result along with all associated Data

Parameters

Name Type Description Required Notes
account_sid String The SID of the Account that created the Recording AddOnResult Payload resources to delete. [required]
reference_sid String The SID of the recording to which the AddOnResult resource that contains the payloads to delete belongs. [required]
add_on_result_sid String The SID of the AddOnResult to which the payloads to delete belongs. [required]
sid String The Twilio-provided string that uniquely identifies the Recording AddOnResult Payload resource to delete. [required]

Return type

(empty response body)

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]

fetch_recording_add_on_result_payload

crate::models::ApiPeriodV2010PeriodAccountPeriodRecordingPeriodRecordingAddOnResultPeriodRecordingAddOnResultPayload fetch_recording_add_on_result_payload(account_sid, reference_sid, add_on_result_sid, sid)

Fetch an instance of a result payload

Parameters

Name Type Description Required Notes
account_sid String The SID of the Account that created the Recording AddOnResult Payload resource to fetch. [required]
reference_sid String The SID of the recording to which the AddOnResult resource that contains the payload to fetch belongs. [required]
add_on_result_sid String The SID of the AddOnResult to which the payload to fetch belongs. [required]
sid String The Twilio-provided string that uniquely identifies the Recording AddOnResult Payload resource to fetch. [required]

Return type

crate::models::ApiPeriodV2010PeriodAccountPeriodRecordingPeriodRecordingAddOnResultPeriodRecordingAddOnResultPayload

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_recording_add_on_result_payload

crate::models::ListRecordingAddOnResultPayloadResponse list_recording_add_on_result_payload(account_sid, reference_sid, add_on_result_sid, page_size, page, page_token)

Retrieve a list of payloads belonging to the AddOnResult

Parameters

Name Type Description Required Notes
account_sid String The SID of the Account that created the Recording AddOnResult Payload resources to read. [required]
reference_sid String The SID of the recording to which the AddOnResult resource that contains the payloads to read belongs. [required]
add_on_result_sid String The SID of the AddOnResult to which the payloads to read belongs. [required]
page_size Option<i32> How many resources to return in each list page. The default is 50, and the maximum is 1000.
page Option<i32> The page index. This value is simply for client state.
page_token Option<String> The page token. This is provided by the API.

Return type

crate::models::ListRecordingAddOnResultPayloadResponse

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]