Command 22 โ List Gameplay History of a User (with Replay)
This command returns a styled HTML table displaying the gameplay history of a specific user. It includes pagination (10 entries per page) and optional replay functionality. You can filter by gameplay ID (gpid) or request only incomplete rounds.
The Replay button included in the HTML lets you view a description or even replay the actual gameplay screen (depending on the game).
{ "command": "22", "login": "demoaccount", "gpid": "78221", "incomplete": "1", "apiusername": "your_api_username", "apipass": "your_api_password" }๐ Note: The input must be securely sent to the REST API URL. All field names and values are case-sensitive and must match the exact format provided.
Parameter | Mandatory | Description | Type |
| โ | Must be | string |
| โ | Username (min. 6 characters). Optional if | string |
| โ | RGS-CWS user ID. Cannot be used together with | string |
| โ | Specific Gameplay ID to filter. Leave empty to retrieve all user gameplays. | string |
| โ | If | string |
| โ | API username (for authentication, especially in multi-operator setups) | string |
| โ | API password | string |
You must provide either
loginoruseridโ not both.
โ Success:
{ "message": "<html>...Styled HTML table of gameplays with REPLAY buttons...</html>" }โ Failure (e.g., invalid user):
{ "message": "ERROR" }Parameter | Required | Description | Type |
| โ |
| string |
Use this command for support tools, player history panels, or compliance audits.
The returned HTML is already styled, and includes REPLAY buttons per entry.
To retrieve only unresolved rounds (e.g., interrupted gameplays), use
incomplete = "1".