Account
An Account v2 object represents a company, individual, or other entity that your Stripe integration interacts with. It contains both identifying information and properties that control its behavior and functionality. An Account can have one or more configurations that enable sets of related features, such as allowing it to act as a merchant or customer. The Accounts v2 API is broadly available to Connect platforms, and to other users in preview. The Accounts v2 API also supports the Global Payouts preview feature.
Summary
Types
@type t() :: %Stripe.Resources.V2.Core.Account{ applied_configurations: term(), closed: term(), configuration: term(), contact_email: term(), contact_phone: term(), created: term(), dashboard: term(), defaults: term(), display_name: term(), future_requirements: term(), id: term(), identity: term(), livemode: term(), metadata: term(), object: term(), requirements: term() }
applied_configurations- The configurations that have been applied to this account.closed- Indicates whether the account has been closed.configuration- An Account represents a company, individual, or other entity that a user interacts with. Accounts store identity information and one or more configurations that enable product-specific capabilities. You can assign configurations at creation or add them later.contact_email- The primary contact email address for the Account.contact_phone- The default contact phone for the Account.created- Time at which the object was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z. Format: date-time.dashboard- A value indicating the Stripe dashboard this Account has access to. This will depend on which configurations are enabled for this account. Possible values:express,full,none.defaults- Default values for settings shared across Account configurations.display_name- A descriptive name for the Account. This name will be surfaced in the Stripe Dashboard and on any invoices sent to the Account.future_requirements- Information about the future requirements for the Account that will eventually come into effect, including what information needs to be collected, and by when.id- Unique identifier for the Account.identity- Information about the company, individual, and business represented by the Account.livemode- Has the valuetrueif the object exists in live mode or the valuefalseif the object exists in test mode.metadata- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.object- String representing the object's type. Objects of the same type share the same value of the object field. Possible values:v2.core.account.requirements- Information about the active requirements for the Account, including what information needs to be collected, and by when.