Open Context Protocol is live! 🚀 Read the launch post
fetchRecordingAddOnResultPayloadData

fetchRecordingAddOnResultPayloadData

Fetch an instance of a result payload

Details

  • Method: GET
  • Path: /2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{AddOnResultSid}/Payloads/{PayloadSid}/Data.json
  • Operation ID: FetchRecordingAddOnResultPayloadData

Parameters

{
  "AccountSid": {
    "description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Recording AddOnResult Payload resource to fetch.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "ReferenceSid": {
    "description": "The SID of the recording to which the AddOnResult resource that contains the payload to fetch belongs.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "AddOnResultSid": {
    "description": "The SID of the AddOnResult to which the payload to fetch belongs.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "PayloadSid": {
    "description": "The Twilio-provided string that uniquely identifies the Recording AddOnResult Payload resource to fetch.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('twilio')

# Call this tool
result = await agent.call_tool('fetchRecordingAddOnResultPayloadData', {
    # Add required parameters here
})