Callback Notification
Identity Verification Solution will use the callbackUrl from Generate URL API's request params to notify caller that the full result is completed and can be fetched.
Callback Interface Requirements
Caller need to provide an HTTPS interface capable of receiving callback notifications, according to the following specifications:
- URL: Users should provide an HTTPS URL address to receive notifications.
- the URL should not be expired in 24 hours.
- the URL should contains the authorization query param for safety.
- Method: Callbacks will be sent using the POST request method.
- Content Type: Notifications will be sent with a content body in the application/json format.
- Request Body: The request will contain a JSON object that includes the processing status and relevant data.
Request Body Example
{
"signatureId": "1234567890",
"type": "COMPLETED", //COMPLETED,SUBMIT_COMPLETED
}
type | Simple Explain |
---|---|
COMPLETED | The whole verification finished. |
SUBMIT_COMPLETED | Submit data (document and face if needed) finished. |
Updated about 1 month ago