Properties
| Name | Type | Description |
|---|---|---|
| address | object | KYC Exempt user's current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable. |
| business_account_token | string | Only applicable for customers using the KYC-Exempt workflow to enroll authorized users of businesses. Pass the account_token of the enrolled business associated with the AUTHORIZED_USER in this field. |
| string | The KYC Exempt user's email | |
| external_id | string | A user provided id that can be used to link an account holder with an external system |
| first_name | string | The KYC Exempt user's first name |
| kyc_exemption_type | string | Specifies the type of KYC Exempt user |
| last_name | string | The KYC Exempt user's last name |
| phone_number | string | The KYC Exempt user's phone number, entered in E.164 format. |
| workflow | string | Specifies the workflow type. This must be 'KYC_EXEMPT' |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/KycExempt",
"title": "KycExempt",
"properties": {
"address": {
"$ref": "#/components/schemas/Address",
"description": "KYC Exempt user's current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.\n"
},
"business_account_token": {
"description": "Only applicable for customers using the KYC-Exempt workflow to enroll authorized users of businesses. Pass the account_token of the enrolled business associated with the AUTHORIZED_USER in this field.",
"type": "string"
},
"email": {
"description": "The KYC Exempt user's email",
"type": "string"
},
"external_id": {
"description": "A user provided id that can be used to link an account holder with an external system",
"type": "string"
},
"first_name": {
"description": "The KYC Exempt user's first name",
"type": "string"
},
"kyc_exemption_type": {
"description": "Specifies the type of KYC Exempt user",
"enum": [
"AUTHORIZED_USER",
"PREPAID_CARD_USER"
],
"type": "string"
},
"last_name": {
"description": "The KYC Exempt user's last name",
"type": "string"
},
"phone_number": {
"description": "The KYC Exempt user's phone number, entered in E.164 format.",
"type": "string"
},
"workflow": {
"description": "Specifies the workflow type. This must be 'KYC_EXEMPT'",
"enum": [
"KYC_EXEMPT"
],
"type": "string"
}
},
"required": [
"address",
"email",
"first_name",
"kyc_exemption_type",
"last_name",
"phone_number",
"workflow"
],
"type": "object"
}