Request

In the following you find a sample request for passwordVerify webhook:

{
	"id": "who-1234567890", // Unique ID per webhook request
	"projectID": "pro-1234567890", // Your project ID from the developer panel
	"action": "passwordVerify",
	"data": {
		"username": "testUsername",
		"password": "testPassword"
	}
}

Response

In the following you find a sample response for passwordVerify webhook:

{
	"responseID": "d5a80602-a771-4532-8cc8-6d4a9003d92a", // A response ID you can set in your backend for debugging 
	"data": {
		"success": true	// else false
	}
}