action digitalocean_account_get { label: "Get User Information" description: "To show information about the current user account, send a GET request to `/v2/account`." provider: digitalocean method: GET path: "/v2/account" encoding: json output: { properties: { account: { type: "object" required: ["droplet_limit", "email", "email_verified", "floating_ip_limit", "status", "status_message", "uuid"] properties: { droplet_limit: { type: "integer" description: "The total number of Droplets current user or team may have active at one time." } email: { type: "string" description: "The email address used by the current user to register for DigitalOcean." } email_verified: { type: "boolean" description: "If true, the user has verified their account via email. False otherwise." } floating_ip_limit: { type: "integer" description: "The total number of Floating IPs the current user or team may have." } status: { type: "string" description: "This value is one of \"active\", \"warning\" or \"locked\"." enum: ["active", "warning", "locked"] } status_message: { type: "string" description: "A human-readable message giving more details about the status of the account." } team: { type: "object" description: "When authorized in a team context, includes information about the current team." properties: { name: { type: "string" description: "The name for the current team." } uuid: { type: "string" description: "The unique universal identifier for the current team." } } } uuid: { type: "string" description: "The unique universal identifier for the current user." } } } } } }