action twilio_fetch_signing_key { label: "FetchSigningKey" description: "" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/SigningKeys/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { type: "object" properties: { date_created: { type: "string" format: "date-time-rfc-2822" } date_updated: { type: "string" format: "date-time-rfc-2822" } friendly_name: { type: "string" } sid: { type: "string" } } } }