docs.remarkable.net
ReferenceValid

Check if an order is valid

An endpoint to check if an order contains all the necessary elements. Allows Anonymous.

GET/v1/orders/{reference}/valid
AuthorizationBasic <token>

Basic Authorization header using the Bearer scheme.

In: header

Authorization<token>

JWT Authorization header using the Bearer scheme.

In: header

Path Parameters

referencestring

Response Body

curl -X GET "https://loading/v1/orders/string/valid"
{
  "errors": [
    "string"
  ],
  "valid": true
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?