List booths

GET /api/booths

Allows you to retrieve a paginated list of booths under your account.

Query parameters

  • filter string

    criteria to filter by

  • sort string

    criteria to sort by

  • limit string

    amount of results per page to return

  • page string

    page number

Responses

  • OK

    Hide response attributes Show response attributes object
    • data array[object]

      Booth data

      Hide data attributes Show data attributes object
    • limit number

      The number of items per page currently applied

    • page number

      The number of the page returned

    • pages number

      The total number of pages matching the current search

    • total number

      The total number of accounts matching the query

  • Unauthorized

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

GET /api/booths
curl \
 -X GET http://localhost:4000/api/booths
Response examples (200)
{
  "data": [],
  "page": 1,
  "limit": 25,
  "pages": 1,
  "total": 0
}
Response examples (200)
{
  "data": [],
  "page": 1,
  "limit": 25,
  "pages": 1,
  "total": 0
}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (401)
{
  "error": "Error Reason"
}