Callback: account.validate
The account.validate
endpoint validates that the account with a given id is present in your system and should be authenticated by the web store.
Example Request
{
"accountId": "86436542684"
}
Example Response
The isValid
field should be set to true
when player with the provided accountId
exists . The metadata
field is optional but, when present, it will be passed in the request of the purchase.completed
webhook.
{
"isValid": true,
"displayName": "Player Name",
"metadata": {}
}
Updated about 1 year ago