Skip to main content

Verification Result Event

The Verification Result Event is triggered when a verification process has been completed and the final verification result is available.

This callback event is sent as an HTTP POST request to the verification callback URL configured in the Sinch SMV Platform.

The event is used to notify the enterprise about the outcome of the verification request.

The callback is triggered only when a verification callback URL is configured in the dashboard.

Sample Request:

{
"id": "XXXXXXXXXXXXXXXXXXXX",
"event": "VerificationResultEvent",
"method": "seamless",
"identity": {
"type": "number",
"endpoint": "+1XXXXXXXXXX"
},
"reference": "string",
"custom": "string",
"status": "PENDING",
"reason": "Expired",
"source": "intercepted"
}
ParameterDescriptionJSON TypeRequired
idUnique identifier of the verification request. This value matches the ID returned when the verification was initiated.StringYes
eventIndicates the type of callback event. For this webhook the value is always "VerificationResultEvent".stringYes
referenceCustom reference value provided when starting the verification request. Used to map the event to your internal system.stringNo
customOptional custom data that was passed when initiating the verification request.stringNo
identityContains information about the endpoint being verified (usually a phone number).objectyes
typeType of identity being verified. Currently only "number" is supported.Stringyes
endpointType of identity being verified. Currently only "number" is supported.stringYes
methodIndicates the verification method used. (seamless)stringyes
statusIndicates the final status of the verification attempt.stringyes
reasonProvides additional explanation when a verification fails, is denied, or aborted.stringyes
sourceIndicates how the verification was completed (automatic interception or manual entry). Mostly relevant for SMS OTP flows.stringNo

Sample Response:

The enterprise backend must return an empty 200 OK response after successfully processing the callback event.