action twilio_fetch_balance { label: "FetchBalance" description: "Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child accounts do not contain balance information" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Balance.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } } required: ["AccountSid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The unique SID identifier of the Account." } balance: { type: "string" description: "The balance of the Account, in units specified by the unit parameter. Balance changes may not be reflected immediately. Child accounts do not contain balance information" } currency: { type: "string" description: "The units of currency for the account balance" } } } }