action twilio_fetch_outgoing_caller_id { label: "FetchOutgoingCallerId" description: "Fetch an outgoing-caller-id belonging to the account used to make the request" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/OutgoingCallerIds/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the OutgoingCallerId resource." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } friendly_name: { type: "string" description: "The string that you assigned to describe the resource." } phone_number: { type: "string" format: "phone-number" description: "The phone number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number." } sid: { type: "string" description: "The unique string that that we created to identify the OutgoingCallerId resource." } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } } } }