GET
/
orders
curl --request GET \
  --url https://api.readmin.app/orders \
  --header 'loader-id: <api-key>'
{
  "success": true,
  "orders": [
    {
      "_id": "<string>",
      "groupId": "<string>",
      "customerId": "<string>",
      "cashierId": "<string>",
      "status": "submitted",
      "items": [
        {
          "item": "<string>",
          "quantity": 123
        }
      ],
      "log": [
        {
          "event": "<string>",
          "userId": "<string>",
          "date": "2023-11-07T05:31:56Z"
        }
      ],
      "involvedUsers": [
        "<string>"
      ],
      "placeId": "<string>",
      "gameId": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "lastModified": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

loader-id
string
header
required

Response

200
application/json
Successful operation
success
boolean
orders
object[]