action twilio_list_call_event { label: "ListCallEvent" description: "Retrieve a list of all events for a call." provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Events.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } CallSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid", "CallSid"] additionalProperties: false } output: { type: "object" properties: { end: { type: "integer" } events: { type: "array" items: { type: "object" properties: { request: { description: "Contains a dictionary representing the request of the call." type: "object" } response: { description: "Contains a dictionary representing the call response, including a list of the call events." type: "object" } } } } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }