Skip to main content
Parcel Events Sandbox Docs

Search documentation

Type to search this documentation.

List scheduled pickups

GET/v1/pickupsList scheduled pickups

Parameters

cursorstringquery

minLength 1

limitintegerquery

default 25 · maximum 100 · minimum 1

scheduled_onstring · datequery

Responses

200A page of pickupsapplication/json
objectPickupPage
dataarray of objectrequired
Show child attributes
Show array items
addressobjectrequired
Show child attributes
citystringrequired
companynull | string
countrystringrequired

pattern ^[A-Z]{2}$

line1stringrequired
line2null | string
namestringrequired

minLength 1

phonenull | string
postal_codestringrequired
regionnull | string
created_atstring · date-timerequired
idstringrequired
objectvaluerequired

const "pickup"

shipment_idsarray of stringrequired
Show child attributes
statusstringrequired

one of "scheduled", "completed", "canceled", "missed"

windowobjectrequired
Show child attributes
ends_atstring · date-timerequired
starts_atstring · date-timerequired
has_morebooleanrequired
next_cursornull | stringrequired
Example response
{
  "data": [
    {
      "address": {
        "city": "Exampleton",
        "company": "Northstar Supplies",
        "country": "ZZ",
        "line1": "14 Fictional Quay",
        "line2": "Unit 7",
        "name": "Rowan Example",
        "phone": "+00000000000",
        "postal_code": "EX4 2PL",
        "region": "Test Province"
      },
      "created_at": "2026-06-09T00:00:00Z",
      "id": "pku_00000000000000000001",
      "object": "pickup",
      "shipment_ids": [
        "string"
      ],
      "status": "canceled",
      "window": {
        "ends_at": "2026-09-06T12:00:00Z",
        "starts_at": "2026-09-06T09:00:00Z"
      }
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}

Documentation menu