Update Business KYB
With this request, you can update the Know Your Business (KYB) information for an existing onboarded business. You will need to provide all KYB-related details using this API and ensure that the business's KYB status is either null or Failed.
Endpoint
/3p/api/v1/user/kyb/{uuid}
Request Payload
{
"business": {
"name": "Jack Inc.",
"tin": "961862955"
},
"address": {
"line_1": "20 Elmora Ave",
"city": "Elizabeth",
"state": "NJ",
"zip": "07202"
}
}
Fields | Type | Is Required? | Description |
---|---|---|---|
business.name | string | Yes | |
business.tin | string|unique | Yes | must consist of 9 digit without any special character |
address.line_1 | string | Yes | |
address.line_2 | string | ||
address.city | string | Yes | |
address.state | string(2) | Yes | |
address.zip | string | Yes | must consist of 5 digit without any special character |
Response Object
{
"status": true,
"message": "The business KYB has been updated",
"data": [],
"errors": []
}
Errors & Warnings
Code | Message |
---|---|
401 | |
403 | |
404 | |
422 |
Updated 2 months ago