Maintenance Notifications
Request
URI: /notification/maintenance
Example usage: https://{callback_url}/notification/maintenance
The request is executed using the POST
method.
This method provides detailed maintenance data.
Request body
Name | Type | Required | Description |
---|---|---|---|
status | string | Yes | Maintenance status: started , test , created , finished , failed , canceled |
batchId | string | Yes | Batch Identifier |
gameIds | array | Yes | The IDs of the games that are under maintenance |
additions | object | Yes | Maintenance data |
brandName | string | Yes | Name of brand whose games are under maintenance |
countries | array | Yes | Countries for which the games are on maintenance |
currencies | array | Yes | Currencies configured for games that are under maintenance |
providerIds | array | Yes | IDs of providers whose games are under maintenance |
Example of a request body
Request: /notification/maintenance
{
"status": "started",
"batchId": "test",
"gameIds": [],
"additions": {
"endAt": "2024-04-01 00:00:00",
"reason": null,
"startAt": "2024-03-28 00:00:00"
},
"brandName": "brand name",
"countries": [
"AF",
"AI"
],
"currencies": [],
"providerIds": [
383
]
}
Response body
Name | Type | Required | Description |
---|---|---|---|
status | boolean | Yes | Response status code Accepted values: true , false |
Example of a response body
Response: /notification/maintenance
{
"status": true
}