diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index a0caaf16..84c5c63d 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -9954,6 +9954,14 @@ components: allOf: - $ref: '#/components/schemas/CustomerCreateRequest' - $ref: '#/components/schemas/IndividualCustomerFields' + - type: object + properties: + idType: + $ref: '#/components/schemas/IdentificationType' + identifier: + type: string + description: The individual's tax identification number (SSN or ITIN for a US account holder). Required to onboard the individual as a US account holder. Write-only — never returned in customer responses. + example: 123-45-6789 BusinessInfo: type: object description: Additional information required for business entities diff --git a/openapi.yaml b/openapi.yaml index a0caaf16..84c5c63d 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -9954,6 +9954,14 @@ components: allOf: - $ref: '#/components/schemas/CustomerCreateRequest' - $ref: '#/components/schemas/IndividualCustomerFields' + - type: object + properties: + idType: + $ref: '#/components/schemas/IdentificationType' + identifier: + type: string + description: The individual's tax identification number (SSN or ITIN for a US account holder). Required to onboard the individual as a US account holder. Write-only — never returned in customer responses. + example: 123-45-6789 BusinessInfo: type: object description: Additional information required for business entities diff --git a/openapi/components/schemas/customers/IndividualCustomerCreateRequest.yaml b/openapi/components/schemas/customers/IndividualCustomerCreateRequest.yaml index 30531f66..ad339632 100644 --- a/openapi/components/schemas/customers/IndividualCustomerCreateRequest.yaml +++ b/openapi/components/schemas/customers/IndividualCustomerCreateRequest.yaml @@ -2,3 +2,14 @@ title: Individual Customer Create Request allOf: - $ref: ./CustomerCreateRequest.yaml - $ref: ./IndividualCustomerFields.yaml + - type: object + properties: + idType: + $ref: ./IdentificationType.yaml + identifier: + type: string + description: >- + The individual's tax identification number (SSN or ITIN for a US + account holder). Required to onboard the individual as a US account + holder. Write-only — never returned in customer responses. + example: 123-45-6789