Get inbound shipment

GET /api/v1/inbound-shipments/:id read:inventory

A single inbound shipment. status is RECEIVED and received_at is set once the warehouse has scanned the box in.

Try it GET /api/v1/inbound-shipments/0

These inputs are shared across all docs pages, so an id entered here carries over.

response

Not run yet. Press Run to make a live call against https://service.rip.fun (through this demo's server-side proxy; the API key never reaches the browser).

curl (tracks the inputs above)
curl -X GET 'https://service.rip.fun/api/v1/inbound-shipments/0' \
  -H 'X-API-Key: rip_…'

Response fields (data)

FieldDescription
inbound_shipmentSame shape as POST /inbound-shipments

Errors

StatusCodeWhen
400invalid idid is not a positive integer
404not foundinbound shipment not part of your account

See Errors for the response envelope and the full code list.