API Sections Resource types Resource type Resources Resource Items (Game) - GET
Update the game, the table below details the fields and their data type
URL : /v3/resource-types/{resource_type_id}/resources/{resource_id}/items/{item_id}
Method : PATCH
Fields :
Name | Type | Description |
---|---|---|
game | json | Game details |
statistics | json | Game statistics |
winner_id | string | The game winner |
score | integer | Final score |
complete | boolean | True/1 if the game is complete |
Code : 204
No Content
Code : 404
Content :
{
"message": "Game can't be found."
}
Code : 403
Content :
{
"message": "Game can't be found or is not accessible to you."
}
Code : 400
Content :
{
"message": "Unable to handle your request, please include a request body."
}
Code : 422
Content :
{
"message": "Validation error.",
"fields": {
"name": {
"errors": [
"The game value must be valid json"
]
}
}
}