You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Create an account token with a publishable key and pass it to the Accounts v2 API to
11
+
* create or update an account without its data touching your server.
12
+
* Learn more about [account tokens](https://docs.stripe.com/connect/account-tokens).
13
+
* In live mode, you can only create account tokens with your application's publishable key.
14
+
* In test mode, you can create account tokens with your secret key or publishable key.
11
15
* @throws Stripe.RateLimitError
12
16
*/
13
17
create(
@@ -94,7 +98,7 @@ export namespace V2 {
94
98
exportnamespaceCore{
95
99
exportinterfaceAccountTokenCreateParams{
96
100
/**
97
-
* The default contact email address for the Account. Required when configuring the account as a merchant or recipient.
101
+
* The primary contact email address for the Account.
98
102
*/
99
103
contact_email?: string;
100
104
@@ -260,7 +264,7 @@ export namespace V2 {
260
264
documents?: Individual.Documents;
261
265
262
266
/**
263
-
* The individual's email address.
267
+
* The individual's email address. You can only set this field when the Account is configured as a `merchant` or `recipient`. Use `contact_email` as the primary contact email for this Account.
264
268
*/
265
269
email?: string;
266
270
@@ -454,7 +458,7 @@ export namespace V2 {
454
458
proof_of_address?: Documents.ProofOfAddress;
455
459
456
460
/**
457
-
* One or more documents showing the company's proof of registration with the national business registry.
461
+
* One or more documents that demonstrate proof of ultimate beneficial ownership.
0 commit comments