Retrieves a KYC request with a specified ID.
Expands a request to include embedded objects within the _embedded property of the response. This field accepts a comma-separated list of objects.
For more information, see Embedded resources.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/storefront/kyc-requests/{id}
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/storefront/kyc-requests/{id}
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/storefront/kyc-requests/{id}
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/storefront/kyc-requests/{id}?expand=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'KYC request retrieved.
ID of the KYC request.
Status of the request.
| Enum Value | Description |
|---|---|
| gathering | No documents have been provided yet. This is a temporary state. |
| attempted | At least one document has been provided but none were assigned the |
| partial | At least one requested document has the |
| pending-review | At least one requested document has the |
| fulfilled | All requested documents are provided and have been assigned the |
| failed | At least one requested document has exhausted all attempts, and has not been assigned a |
| abandoned | One or more documents provided but the request expired. This is a permanent state. |
| expired | No documents were provided and the request expired. This is a permanent state. |
URL where the customer is redirected when a KYC document upload is complete. When the customer is redirected, Rebilly appends an info query parameter that has one of the following values:
back: Customer clicked theback to websitelink.token_expired: Customer's token expired.success: Customer uploaded KYC documents that have been analyzed.manual: Customer uploaded KYC documents that require a manual review. This is because the analyzer rejected the documents or could not process them.partial: Some of the customer's KYC documents have been analyzed, but other documents have not. For example, this may occur when a proof of address document is analyzed but proof of ID is not.
Example: https://example.com?info=success.
Date and time when the request expires. The default value is one hour in the future.
Date and time when the resource is created. This value is set automatically when the resource is created.
Date and time when the resource is updated. This value is set automatically when the resource is updated.
{ "id": "kyc_req_0YV7JMJ3DBCGRBR7K9D4HVGPP5", "documents": [ { … } ], "status": "gathering", "redirectUrl": "http://example.com", "expirationTime": "2019-08-24T14:15:22Z", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "_links": [ { … } ], "_embedded": { "documents": [] } }