docs.remarkable.net
OrdersReturnrequests

Get ReturnRequests

Get requested returns via JSON. Authorise with query auth

GET/v1/batches/orders/returnrequests
AuthorizationBasic <token>

Basic Authorization header using the Bearer scheme.

In: header

Authorization<token>

JWT Authorization header using the Bearer scheme.

In: header

Query Parameters

siteId?integer
Formatint32
skip?integer
Formatint32
take?integer
Formatint32
startDate?string
endDate?string

Response Body

curl -X GET "https://loading/v1/batches/orders/returnrequests?siteId=0&skip=0&take=0&startDate=string&endDate=string"
{
  "orderReturns": [
    {
      "orderId": 0,
      "currentOrderStatus": "string",
      "orderReference": "string",
      "clientOrderId": "string",
      "orderLineId": 0,
      "clientOrderLineId": "string",
      "clientProductId": "string",
      "productCode": "string",
      "stockCode": "string",
      "orderedQuantity": 0,
      "customerId": 0,
      "clientCustomerId": "string",
      "returnCode": "string",
      "returnRequestDate": "2019-08-24T14:15:22Z",
      "returnReason": "string"
    }
  ]
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?