Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ This guide provides comprehensive information about creating customers in the Gr

<CustomerTypes />

The base required information for all customers is only:

- Platform customer ID (your internal identifier)
- Customer type (`INDIVIDUAL` or `BUSINESS`)
The only required field for all customers is `customerType` (`INDIVIDUAL` or `BUSINESS`). It's recommended to also pass a `platformCustomerId` to tie the customer to your internal identifier, but if you don't, one will be generated automatically.

If using sending and receiving to just-in-time UMA addresses, you'll also need to specify the bank account information

Expand Down
1 change: 0 additions & 1 deletion mintlify/openapi.yaml

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

5 changes: 1 addition & 4 deletions mintlify/snippets/creating-customers/customers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ export const Customers = ({ individualEnabled = true, businessEnabled = true, um

Your platform's configuration (retrieved via `GET /config`) includes a `supportedCurrencies` array. Each currency object within this array has a `providerRequiredCustomerFields` list. If a customer is intended to use a specific currency, any fields listed for that currency **must** be provided when creating or updating the customer.

The base required information for all customers is only:

- Platform customer ID (your internal identifier)
- Customer type (`INDIVIDUAL` or `BUSINESS`)
The only required field for all customers is `customerType` (`INDIVIDUAL` or `BUSINESS`). It's recommended to also pass a `platformCustomerId` to tie the customer to your internal identifier, but if you don't, one will be generated automatically.

If using sending and receiving to just-in-time UMA addresses, you'll also need to specify the bank account information

Expand Down
1 change: 0 additions & 1 deletion 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
@@ -1,7 +1,6 @@
type: object
required:
- customerType
- platformCustomerId
properties:
platformCustomerId:
type: string
Expand Down
Loading