Finished Journey Webhook
The IDWise backend will send a JSON HTTP POST request to the webhook configured, with the following details:
{
"event": "Finished Journey",
"body": {
"eventId":"4****-****-****-*********7",
"journeyId": "6720***********22e",
"referenceNo": "840...........23",
"systemDecision": "<SYSTEM_DECISION>"
}
}
Note
Please note this object might be extended with extra elements. Ensure your code can accommodate any extra elements introduced to this payload object.
The JSON object provided contains information about certain events in the ID verification process. Here is the explanation of its elements:
event
: Identifies the type of event that triggered this webhook. For finished journey webhook this will always beFinished Journey
.
Inside the body
element you find these elements:
eventId
: A unique identifier to identify this event instance. Should the event be attempted again, theeventId
will consistently remain unchanged throughout all retry attempts.journeyId
: A unique identifier for the journey, a specific instance of the verification process.referenceNo
: The reference number associated with the journey.systemDecision
: The automated decision by the IDWise system based on the inputs received.
Updated 7 days ago