Get event status
Request
URI: /getEventStatus
Example usage: https://{base_url}/getEventStatus?{parameters}
The request is executed using the GET
method.
This method allows the platform to get the status of a game event.
Request parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes | User identifier |
token | string | Yes | Current user token |
gameId | string | Yes | Game identifier |
eventId | string | Yes | Idetifier of event that requiers a status |
Example of a request parameters
Response: /getEventStatus
{
"userId": "3234",
"token": "XXXXXXXXXX",
"gameId": "1018786",
"eventId": "1234"
}
Response parameters
Name | Type | Required | Description |
---|---|---|---|
status | boolean | Yes | Response status |
isEventClosed | boolean | Yes | Event indicator |
Example of a successful response
Response: /getEventStatus
{
"status": true,
"isEventClosed": true
}