Person identifications
(Sandbox only) Assign outcome of a Fourthline identification
Testing endpoint to set the outcome of a Fourthline identification once it reaches a specified status. This endpoint forwards the received payload to Fourthline's "Register a Verification Outcome" endpoint. For a full description and specification of the request parameters see Fourthline's online documentation.
post/v1/persons/{person_id}/identifications/{id}/register_verification_outcome
Path parameters
person_idstring required
The unique ID of the person resource created for a customer.
Example:dc1a6812a14f6cc338cd084208535bcdcper
idstring required
The unique ID of the identification resource created for a customer.
Example:6dc54352d6793a892e0702850d07b831cidt
Request body
Example request
{
"expectations": {
"pending": {
"targetStatus": "user_consent_required"
},
"user_consent_required": {
"responseDetails": [
{
"statusCode": "10"
}
]
}
}
}Response
Successful result of the operation.
Example response
{
"result": "Fourthline verification status updated successfully"
}