DELETE /api/lists

Requires: OAuth 2.0

Delete a game list for a user. Lists can be fetched with /api/lists.

Example

Here's an example of deleting 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?client_id=

headers: {
      Authorization: Bearer 57074b78b1282526107158f16sl3b253faf4dc05
}
body: {
      "list_id": "eMHdCXH41B"
}

Response

 {
   "success": true
}

Parameters

These are all the posible parameters to add to the DELETE body.

ParameterTypeExampleDetails
list_idStringeMHdCXH41B(Required) The id of the list to be deleted.