POST /api/lists/add
Requires: OAuth 2.0
Submit a game to a list for a user. This writes user data that can be fetched with /api/lists.
Example
Here's an example of posting a game onto a list. This call requires a valid access_token to authorize the call for the user. You can see how to get one here.
POSThttps://api.boardgameatlas.com/api/lists/add?client_id=
headers: { Authorization: Bearer 57074b78b1282526107158f16sl3b253faf4dc05 } body: { "list_id": "iOD6UEOaWb", "game_id": "O0G8z5Wgz1" }
Response
{ "success": true }
Parameters
These are all the posible parameters to add to the POST body.
Parameter | Type | Example | Details |
---|---|---|---|
game_id | String | O0G8z5Wgz1 | (Required) The game id you want to add to the list |
list_id | String | iOD6UEOaWb | (Required) The id of the list |