action twilio_fetch_short_code { label: "FetchShortCode" description: "Fetch an instance of a short code" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/SMS/ShortCodes/{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 this ShortCode resource." } api_version: { type: "string" description: "The API version used to start a new TwiML session when an SMS message is sent to this short code." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that this 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 this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } friendly_name: { type: "string" description: "A string that you assigned to describe this resource. By default, the `FriendlyName` is the short code." } short_code: { type: "string" description: "The short code. e.g., 894546." } sid: { type: "string" description: "The unique string that that we created to identify this ShortCode resource." } sms_fallback_method: { type: "string" format: "http-method" description: "The HTTP method we use to call the `sms_fallback_url`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } sms_fallback_url: { type: "string" format: "uri" description: "The URL that we call if an error occurs while retrieving or executing the TwiML from `sms_url`." } sms_method: { type: "string" format: "http-method" description: "The HTTP method we use to call the `sms_url`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } sms_url: { type: "string" format: "uri" description: "The URL we call when receiving an incoming SMS message to this short code." } uri: { type: "string" description: "The URI of this resource, relative to `https://api.twilio.com`." } } } }