Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions mintlify/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ properties:
email:
type: string
format: email
description: Email address for the customer.
description: >-
Email address for the customer. Required when the customer will receive
an Embedded Wallet internal account, because the initial `EMAIL_OTP`
credential is tied to the customer email.
example: john.doe@example.com
umaAddress:
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ properties:
email:
type: string
format: email
description: Email address for the customer.
description: >-
Email address for the customer. For Embedded Wallet customers, this is
the email used for `EMAIL_OTP` credentials.
example: john.doe@example.com
umaAddress:
type: string
Expand Down
4 changes: 2 additions & 2 deletions openapi/components/schemas/customers/InternalAccountType.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ description: >-
stablecoin such as USDC.

- `EMBEDDED_WALLET`: A self-custodial Embedded Wallet provisioned for the
customer. Outbound transfers require a session signature produced by the
customer's device — see the Embedded Wallets guide.
customer based on platform currency configuration. Outbound transfers
require a session signature produced by the customer's device.
6 changes: 5 additions & 1 deletion openapi/paths/customers/customers_internal_accounts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ get:
internal accounts that match the specified filters. If no filters are provided, returns all internal accounts
(paginated).

Internal accounts are created automatically when a customer is created based on the platform configuration.
Internal accounts are created automatically when a customer is created
based on the platform configuration. Platforms configured with an
Embedded Wallet currency create an internal account with type
`EMBEDDED_WALLET`; use the `type` filter to retrieve it for auth and
payment flows.
operationId: listCustomerInternalAccounts
tags:
- Internal Accounts
Expand Down
Loading