
Stripe API Integration Profile
Information and guides about integrating with Stripe API
Add Stripe Integration to Your ProductPost Account Sessions in Stripe API
Creates a AccountSession object that includes a single-use token that the platform can use on their front-end to grant client-side API access.
Input schema fields
Field Name | API Key | Type | Description |
---|---|---|---|
Query | query | object | |
Data | data | object | |
Account | data.account | string | The identifier of the account to create an Account Session for. |
account_session_create_components_param | data.components | object | Each key of the dictionary represents an embedded component, and each embedded component maps to its configuration (e.g. whether it has been enabled or not). |
base_config_param | data.components.account_onboarding | object |
Output schema fields
Field Name | API Key | Type | Description |
---|---|---|---|
Account | account | string | The ID of the account the AccountSession was created for |
Client Secret | client_secret | string | The client secret of this AccountSession. Used on the client to set up secure access to the given `account`. The client secret can be used to provide access to `account` from your frontend. It should not be stored, logged, or exposed to anyone other than the connected account. Make sure that you have TLS enabled on any page that includes the client secret. Refer to our docs to [setup Connect embedded components](https://stripe.com/docs/connect/get-started-connect-embedded-components) and learn about how `client_secret` should be handled. |
ConnectEmbeddedAccountSessionCreateComponents | components | object | |
ConnectEmbeddedBaseConfigClaim | components.account_onboarding | object | |
Enabled | components.account_onboarding.enabled | boolean | Whether the embedded component is enabled. |