- Update KYC settings
Credit file proof
Create a KYC request
Retrieve KYC requests
Retrieve a KYC request
Update a KYC request
Delete the KYC request
Retrieve KYC documents
Create a KYC document
Retrieve a KYC document
Upsert a KYC document
Accept a KYC document
Update KYC document matches
Reject a KYC document
Review a KYC document
Start review of a KYC document
Stop review of a KYC document
Retrieve KYC settings
KYC document accepted
KYC document created
KYC document modified
KYC document rejected
KYC document reviewed
KYC document archived
KYC request attempted
KYC request failed
KYC request fulfilled
KYC request partially fulfilled
Update KYC settings
Updates KYC settings.
Security
SecretApiKey or JWT
Settings for KYC analysis.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/kyc-settings
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/kyc-settings
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/kyc-settings
- SecretApiKey
- JWT
curl -i -X PUT \
https://www.rebilly.com/_mock/catalog/all/kyc-settings \
-H 'Content-Type: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE' \
-d '{
"identityProof": {
"weights": {
"containsImage": 100,
"isIdentityDocument": 100,
"isPublishedOnline": 100,
"firstName": 100,
"lastName": 100,
"expirationDate": 100,
"dateOfBirth": 100,
"issueDate": 100,
"hasMinimalAge": 100,
"hasMatchingFaceProof": 100,
"nationality": 100,
"documentSubtype": 100,
"isTampered": 100,
"isPhotocopy": 100,
"mrzChecksum": 100
},
"thresholds": {
"rejectBelow": 100,
"acceptAbove": 100
},
"minimumAgeSettings": {
"defaultMinimumAge": 18,
"locationOverrides": [
{
"country": "US",
"minimumAge": 21
},
{
"country": "US",
"state": "AL",
"minimumAge": 19
}
]
}
},
"addressProof": {
"weights": {
"firstName": 100,
"lastName": 100,
"line1": 100,
"city": 100,
"region": 100,
"postalCode": 100,
"date": 100,
"phone": 100,
"documentSubtype": 100,
"isTampered": 100
},
"thresholds": {
"rejectBelow": 100,
"acceptAbove": 100
}
},
"uiVersion": "1"
}'KYC settings updated.
Headers
Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.
Example:3600
Response
{ "identityProof": { "weights": { … }, "thresholds": { … }, "minimumAgeSettings": { … } }, "addressProof": { "weights": { … }, "thresholds": { … } }, "uiVersion": "1" }