Sincronizar el estado de registro en la app
Endpoint
POST - https://api.verifik.co/v2/app-registrations/{appRegistrationId}/sync
El endpoint App Registration Sync actualiza el estado y el paso de un proceso de registro de aplicación (App Registration). Este endpoint es útil para sincronizar el estado del registro, especialmente cuando se han cumplido condiciones o criterios específicos.
Headers
Include the necessary authentication headers, as well as any other headers required for authorization and content-type, such as:
Content-Type
application/json
Authorization
Bearer <token>
Body
step
String
Yes
Specifies the step to update, e.g., skipKYC
.
status
String
Yes
The new status of the registration, e.g., COMPLETED_WITHOUT_KYC
.
Step options
skipKYC
COMPLETED_WITHOUT_KYC
instructions
ONGOING
signUpForm
ONGOING
basicInformation
ONGOING
document
ONGOING
liveness
ONGOING
form
ONGOING
end
[COMPLETED, FAILED, NEEDS_MANUAL_VERIFICATION]
Example Body
{
"step": "skipKYC",
"status": "COMPLETED_WITHOUT_KYC"
}
Request
curl -X PUT '{{developmentUrl}}/v2/app-registrations/{appRegistrationId}/sync' \
-H 'Authorization: Bearer <JWT_TOKEN>' \
-H 'Content-Type: application/json' \
-d '{
"step": "skipKYC",
"status": "COMPLETED_WITHOUT_KYC"
}'
Responses
{
"data": {
"token": "<JWT Token>",
"firstName": "",
"lastName": "",
"fullName": "Carlos",
"step": "signUpForm",
"steps": {
"signUpForm": "mandatory",
"basicInformation": "skip",
"document": "mandatory",
"liveness": "mandatory",
"form": "skip"
},
"appRegistrationId": "671ee3f2c96a3247fda5912",
"status": "ONGOING"
}
}
Last updated