Documentation
Log In
Documentation

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"
    }
}
FieldsTypeIs Required?Description
business.namestringYes
business.tinstring|uniqueYesmust consist of 9 digit without any special character
address.line_1stringYes
address.line_2string
address.citystringYes
address.statestring(2)Yes
address.zipstringYesmust consist of 5 digit without any special character

Response Object

{
    "status": true,
    "message": "The business KYB has been updated",
    "data": [],
    "errors": []
}

Errors & Warnings

CodeMessage
401
403
404
422