action twilio_fetch_account { label: "FetchAccount" description: "Fetch the account specified by the provided Account Sid" provider: twilio method: GET path: "/2010-04-01/Accounts/{Sid}.json" encoding: json input: { type: "object" properties: { Sid: { type: "string" } } required: ["Sid"] additionalProperties: false } output: { type: "object" properties: { auth_token: { type: "string" description: "The authorization token for this account. This token should be kept a secret, so no sharing." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date that this account was created, in GMT in RFC 2822 format" } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date that this account was last updated, in GMT in RFC 2822 format." } friendly_name: { type: "string" description: "A human readable description of this account, up to 64 characters long. By default the FriendlyName is your email address." } owner_account_sid: { type: "string" description: "The unique 34 character id that represents the parent of this account. The OwnerAccountSid of a parent account is it's own sid." } sid: { type: "string" description: "A 34 character string that uniquely identifies this resource." } status: { type: "string" enum: ["active", "suspended", "closed"] } subresource_uris: { type: "object" format: "uri-map" description: "A Map of various subresources available for the given Account Instance" } type: { type: "string" enum: ["Trial", "Full"] } uri: { type: "string" description: "The URI for this resource, relative to `https://api.twilio.com`" } } } }