Get a page of partner schedules

Query Parameters
  • PageIndex
    Type: integer Format: int32

    The page index of the search.

  • PageSize
    Type: integer Format: int32

    The number of products to be returned in the response. Returns pages of up to 500 records.

  • SearchText
    Type: string

    The search text to filter schedules by. This can be all or part of a reference number or description

  • PartnerId
    Type: string Format: uuid

    The id of the partner to filter schedules for.

  • CreatedFromUtc
    Type: string Format: date

    The utc date and time to filter schedules created on and after.

  • CreatedToUtc
    Type: string Format: date

    The utc date and time to filter schedules created up to.

  • Status
    Type: integer · enum

    The status of the schedule.

    values
    • Draft = 1
    • Approved = 2
  • IsExported
    Type: boolean

    Whether or not the schedule has been exported for the current api connection

Responses
  • application/json
Request Example for get/v1/schedules
curl https://api.consignlyhq.com/v1/schedules
{
  "index": 1,
  "total": 1,
  "schedules": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "partnerId": "123e4567-e89b-12d3-a456-426614174000",
      "partnerName": null,
      "partnerCode": null,
      "date": "date (YYYY-MM-DD)",
      "referenceNumber": null,
      "amountExclTax": 1,
      "status": "enum (Draft = 1, Approved = 2)",
      "isExported": true
    }
  ]
}