This endpoint allows you to retrieve a list of all the shipments which you have created or imported into your Sendcloud account under your API credentials. You can filter the results based on several query parameters.
Basic Authentication using API key and secrets is currently the main authentication mechanism.
Returns shipments that have the requested status. For a list of possible statuses, see the Retrieve a list of parcel statuses endpoint.
Returns shipments that match a specified tracking number
Returns shipments that match a specified external reference
Returns a shipment that matches a specific order_number property from your shipments
Returns all shipments that matches a specific integration_id property from your shipments
Returns all shipments which have been updated in our system before a given time. Use the ISO 8601 datetime format.
"2018-02-26T11:01:47.505309+00:00"
Returns all shipments which have been updated in our system after a given time. Use the ISO 8601 datetime format.
"2018-02-26T11:01:47.505309+00:00"
Returns all shipments which have been announced to the carrier before the given time. Use the ISO 8601 datetime format.
"2018-02-26T11:01:47.505309+00:00"
Returns all shipments which have been announced to the carrier after the given time. Use the ISO 8601 datetime format.
"2018-02-26T11:01:47.505309+00:00"
Filter results using a comma-separated list of shipments IDs. The list may not contain more than 100 IDs.
"13579,24680,12345"
The cursor query string is used as the pivot value to filter results. If no value is provided, the first page of results will be returned. To get this value, you must encode the offset, reverse and position into a base64 string.
There are 3 possible parameters to encode:
o: Offsetr: Reversep: PositionFor example, r=1&p=300 encoded as a base64 string would be cj0xJnA9MzAw. The query string would then be cursor=cj0xJnA9MzAw.
"cj0xJnA9MzAw"
The maximum number of items to be returned in the response.
1 <= x <= 10010
OK
Retrieve shipments
1