RTP Notifications
Request
URI: /notification/rtp
Example usage: https://{callback_url}/notification/rtp
The request is executed using the POST
method.
This method sends detailed information on Return to Player Percentage. A request is sent every 10 minutes.
Request body
Name | Type | Required | Description |
---|---|---|---|
platform | string | Yes | Platform name |
gamesRTP | array | Yes | Data of RTP by game |
gamesRTP.gameId | integer | Yes | Game ID |
gamesRTP.rtp | decimal | Yes | Current RTP |
Response Body
Name | Type | Required | Description |
---|---|---|---|
status | boolean | Yes | Accepted values: true |
platform | string | Yes | Platform name |
limits | object | Yes | Platform limits |
limits.amount | decimal | Yes | User's balance amount |
limits.limit | decimal | Yes | Limit amount |
limits.currency | string | Yes | Platform currency |
limits.percent | decimal | Yes | Platform Percentage |
limits.platform | string | Yes | Platform name |
Example of a response body
Response: /notification/rtp
{
"status": true,
"platform": "front-12multi",
"limits": [
{
"amount": 0,
"limit": 100,
"currency": "eur",
"currency": "eur",
"percent": 0,
"platform": "front-12multi",
},
{
"amount": 0,
"limit": 100,
"currency": "eur",
"currency": "eur",
"percent": 0,
"platform": "front-12multi",
}
]
}