Skip to main content
Parcel Events Sandbox Docs

Search documentation

Type to search this documentation.

Retrieve a pickup

GET/v1/pickups/{pickup_id}Retrieve a pickup

Parameters

pickup_idstringpathrequired

pattern ^pku_[a-z0-9]{20}$

Responses

200Pickup detailsapplication/json
objectPickup
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
Example response
{
  "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"
  }
}
404The requested synthetic resource does not existapplication/problem+json
objectProblem
detailstring
errorsarray of object
Show child attributes
Show array items
messagestringrequired
pathstringrequired
request_idstringrequired
statusintegerrequired

maximum 599 · minimum 400

titlestringrequired
typestring · urirequired
Example response
{
  "request_id": "req_00000000000000000004",
  "status": 404,
  "title": "Synthetic resource was not found",
  "type": "https://parcel-events.example/problems/not-found"
}

Documentation menu