Skip to content

Commit bffdb0a

Browse files
committed
require legal name on business creation
1 parent 56b6ac8 commit bffdb0a

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

mintlify/openapi.yaml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi.yaml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/paths/customers/customers.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ post:
3535
- type: object
3636
required:
3737
- platformCustomerId
38+
- businessInfo
3839
properties:
3940
platformCustomerId:
4041
type: string
@@ -44,6 +45,23 @@ post:
4445
type: string
4546
description: A KYC URL to be shared with your business customer if KYC needs to be completed
4647
example: "https://example.com/kyc"
48+
businessInfo:
49+
type: object
50+
required:
51+
- legalName
52+
properties:
53+
legalName:
54+
type: string
55+
description: Legal name of the business
56+
example: Acme Corporation, Inc.
57+
registrationNumber:
58+
type: string
59+
description: Business registration number
60+
example: BRN-123456789
61+
taxId:
62+
type: string
63+
description: Tax identification number
64+
example: EIN-987654321
4765
examples:
4866
individualCustomerWithUmaAddress:
4967
summary: Create individual customer with UMA address, including deposit bank account information.

0 commit comments

Comments
 (0)