Xsolla sends a webhook with the user_validation
type to the webhook URL to verify that a user is registered in the game. The request is sent multiple times as part of the payment process:
done
The request is sent when paying with any payment methods.
notification_type required | string Type of notification. | ||||||||||||
object Custom project settings (object). | |||||||||||||
object User details (object). | |||||||||||||
|
Return to indicate successful processing.
Return in case of an error in the provided information (e.g., a required parameter missing, failed authorization, etc.).
Return to indicate temporary errors with your servers.
curl -v 'https://your.hostname/your/uri' \ -X POST \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ -H 'Authorization: Signature 13342703ccaca5064ad33ba451d800c5e823db8f' \ -d '{ "notification_type":"user_validation", "settings": { "project_id": 18404, "merchant_id": 2340 }, "user": { "ip": "127.0.0.1", "phone": "18777976552", "email": "email@example.com", "id": "1234567", "name": "John Smith", "country": "US" } }'
{- "error": {
- "code": "INVALID_USER",
- "message": "Invalid user"
}
}