Appearance
KYC Request
Prior to requesting a KYC Review for a user, make sure that:
- All the necessary declarative data has been provided in the User object
- All the necessary Documents have been uploaded and checked
- The country of tax residency has been properly declared
Best practice – Submitting a KYB must be done for all users at once
The legal entity, its legal representative and shareholders are reviewed as a whole. You can submit the legal entity KYB request only once you have provided all the required documents for all the corresponding users.
The more you abide by the rules of verification, the more efficient Treezor teams will be in verifying your users, allowing for a much smoother experience.
Request a review of the user
You may use the following request to request a KYC Review from Treezor:
bash
curl -X PUT {baseUrl}/v1/users/{userId}/Kycreview \
--header 'Authorization: Bearer {accessToken}' \
--header 'Content-Type: application/json'
1
2
3
2
3
It returns the User object, with its kycLevel
set to 0
(NONE) and kycReview
set to 1
(PENDING).
json
{
"users": [
{
"userId": "1611975",
"userTypeId": "1",
"kycLevel": "0", // <--- 0 means NONE
"kycReview": "1", // <--- 1 means PENDING
"kycReviewComment": "", // <--- No comment has been set by Treezor yet
[...] // some attributes are hidden
}
]
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
Information – Treezor's Compliance team verifies your company in Production
Verification usually takes about 24h, but may take up to 48h or more (working days only).