- Update KYC document matches
Updates the document matches of a KYC document with a specified ID.
Note: Use this operation for manual overrides.
The request body schema depends on the KYC document documentType. The operation rejects unknown fields.
Send type with one of: identity-proof, address-proof, purchase-proof, or funds-proof. The specified value identifies the type of the document match.
KYC document matches overwrite payload.
Type of KYC document matches. This value identifies the document match type as identity-proof.
Specifies if an exact match of the document has been found online.
First name of the customer. This value is null if no match is found.
Last name of the customer. This value is null if no match is found.
Date of birth detected on the document. This value is null if no match is detected.
Expiration date detected on the document. This value is null if no expiration date is detected.
Issue date detected on the document. This value is null if no issue date is detected.
Nationality detected on a passport or citizenship document. This value is null if no nationality is detected.
Region, state, province, or territory that issued the document.
Unique number on the identity document. This value may contain alphanumeric characters.
Interpreted subtype of the uploaded document.
Specifies if an identity document has been digitally tampered with (experimental).
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/kyc-documents/{id}/matches
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/kyc-documents/{id}/matches
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/kyc-documents/{id}/matches
- SecretApiKey
- JWT
- identity-proof
- address-proof
- purchase-proof
- funds-proof
curl -i -X POST \
'https://www.rebilly.com/_mock/catalog/all/kyc-documents/{id}/matches' \
-H 'Content-Type: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE' \
-d '{
"type": "identity-proof",
"containsImage": true,
"isIdentityDocument": true,
"isPublishedOnline": false,
"firstName": "John",
"lastName": "Doe",
"dateOfBirth": "2019-08-24T14:15:22Z",
"expirationDate": "2019-08-24T14:15:22Z",
"issueDate": "2019-08-24T14:15:22Z",
"nationality": "US",
"issuanceCountry": "CA",
"issuanceRegion": "Ontario",
"documentNumber": "1234567890",
"sex": "M",
"documentSubtype": "passport",
"hasMatchingFaceProof": false,
"isTampered": false,
"isDigitallyTampered": false,
"isPhotocopy": false,
"expiryDate": "2019-08-24T14:15:22Z"
}'Document matches updated.
Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.
No content