Upsert game popularity data (concurrent player counts). Requires admin auth.
Input
Encoding
application/jsongames
array
Required
List of games with popularity data to upsert.
Output
Encoding
application/jsonupserted
integer
Required
Number of records upserted.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"games"
],
"properties": {
"games": {
"type": "array",
"items": {
"ref": "#gamePopularity",
"type": "ref"
},
"description": "List of games with popularity data to upsert."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"upserted"
],
"properties": {
"upserted": {
"type": "integer",
"description": "Number of records upserted."
}
}
},
"encoding": "application/json"
},
"description": "Upsert game popularity data (concurrent player counts). Requires admin auth."
}