action linode_get_account { label: "Account View" description: "Returns the contact and billing information related to your Account.\n" provider: linode method: GET path: "/account" encoding: json output: { type: "object" description: "Account object" properties: { active_promotions: { type: "array" items: { type: "object" description: "Promotions generally\noffer a set amount of credit that can be used toward your Linode\nservices, and the promotion expires after a specified date. As well,\na monthly cap on the promotional offer is set.\n\nSimply put, a promotion offers a certain amount of credit every\nmonth, until either the expiration date is passed, or until the total\npromotional credit is used, whichever comes first.\n" properties: { credit_monthly_cap: { type: "string" description: "The amount available to spend per month.\n" } credit_remaining: { type: "string" description: "The total amount of credit left for this promotion.\n" } description: { type: "string" description: "A detailed description of this promotion.\n" } expire_dt: { type: "string" description: "When this promotion's credits expire.\n" } image_url: { type: "string" description: "The location of an image for this promotion.\n" } service_type: { type: "string" description: "The service to which this promotion applies.\n" enum: ["all", "backup", "blockstorage", "db_mysql", "ip_v4", "linode", "linode_disk", "linode_memory", "longview", "managed", "nodebalancer", "objectstorage", "transfer_tx"] } summary: { type: "string" description: "Short details of this promotion.\n" } this_month_credit_remaining: { type: "string" description: "The amount of credit left for this month for this promotion.\n" } } } } active_since: { type: "string" format: "date-time" description: "The datetime of when the account was activated." } address_1: { type: "string" description: "First line of this Account's billing address." } address_2: { type: "string" description: "Second line of this Account's billing address." } balance: { type: "number" description: "This Account's balance, in US dollars." } balance_uninvoiced: { type: "number" description: "This Account's current estimated invoice in US dollars. This is not your final invoice balance. Transfer charges are not included in the estimate.\n" } billing_source: { type: "string" description: "The source of service charges for this Account, as determined by its relationship with Akamai.\nAccounts that are associated with Akamai-specific customers return a value of `akamai`.\nAll other Accounts return a value of `linode`.\n" enum: ["akamai", "linode"] } capabilities: { type: "array" description: "A list of capabilities your account supports.\n" items: { type: "string" } } city: { type: "string" description: "The city for this Account's billing address." } company: { type: "string" description: "The company name associated with this Account." } country: { type: "string" description: "The two-letter ISO 3166 country code of this Account's billing address.\n" } credit_card: { type: "object" description: "Credit Card information associated with this Account." properties: { expiry: { type: "string" description: "The expiration month and year of the credit card." } last_four: { type: "string" description: "The last four digits of the credit card associated with this Account.\n" } } } email: { type: "string" description: "The email address of the person associated with this Account." } euuid: { type: "string" format: "uuid" description: "An external unique identifier for this account.\n" } first_name: { type: "string" description: "The first name of the person associated with this Account." } last_name: { type: "string" description: "The last name of the person associated with this Account." } phone: { type: "string" description: "The phone number associated with this Account." } state: { type: "string" description: "If billing address is in the United States (US) or Canada (CA), only the two-letter ISO 3166 State or Province code are accepted. If entering a US military address, state abbreviations (AA, AE, AP) should be entered. If the address is outside the US or CA, this is the Province associated with the Account's billing address.\n" } tax_id: { type: "string" description: "The tax identification number associated with this Account, for tax calculations in some countries. If you do not live in a country that collects tax, this should be an empty string (`\"\"`).\n" } zip: { type: "string" description: "The zip code of this Account's billing address. The following restrictions apply:\n\n- May only consist of letters, numbers, spaces, and hyphens.\n- Must not contain more than 9 letter or number characters.\n" } } } }