The following endpoints apply to this flow:
Prerequisites
- Server-side SDK installed for your platform.
- Authentication credentials from the Prove Portal configured in your environment.
Enroll Identity for Monitoring
Use the Enroll Identity endpoint to enroll a single customer for monitoring:The function returns:
identityId: a unique Prove-generated identifier for the enrolled identity.success: if true, the request was successful and the identity was created.
Webhook notifications
Webhooks are the method by which Prove sends risk change events. Webhook integration is necessary to receive change notifications for enrolled consumers. Here’s how to get these webhook notifications up and running:Access the Portal
Login to the Portal.
Open Webhook Configuration
Using the Configure tab, select the Configure button next to the Sandbox webhook.

Save and Test Webhook
Select Save and Test Webhook. This saves your configuration and sends a test webhook to your endpoint.
Authenticate Webhook
The webhook URL requires authentication using Prove’s secret for JSON Web Token (JWT). The JWT is a synchronous token using the HS256 algorithm.Use this secret to sign the JWT token that Prove sends with the webhook notifications. Add the appropriate code snippet from the webhook configuration to your server-side implementation, replacing
whsec_your_secret with the secret provided by the Portal.Prove generates the secret when you enter the appropriate URL and you select Save and Test Webhook or Configure Webhook.
Parse the Webhook Payload
The following snippet shows an example of each type of change event you could receive from Prove. Each notification comes as an array of event objects.
Example Payload
Field Definitions
Field Definitions
A unique event ID to reference if you need support.
A description of the event.
The event type. Identity Manager supports:
PHONE_NUMBER_CHANGE, DISCONNECT, PORT, LINE_TYPE_CHANGE, and MOVED_OUT_OF_COVERAGE.The time the event is sent.
The client customer ID associated with the identity.
A unique Prove-generated identifier.

