Get Manifests

View as Markdown

Retrieve a paginated list of manifests created on the Rendr platform. Results can be filtered by status or store.


Endpoint

GET {{domain}}/{{tenant_id}}/manifests

Authentication: Bearer token required via the Authorization header.


Query Parameters

ParameterTypeDescription
last_idStringUsed for pagination. Pass the id of the last manifest from the previous response to retrieve the next page.
statusStringFilter by manifest status. Accepted values: open, in_process, complete.
store_idStringFilter manifests for a specific store using the Rendr store_id.
store_referenceStringFilter manifests for a specific store using the store’s reference ID.

Pagination

Each request returns up to 50 manifests. To retrieve the next page, pass the id of the last manifest in the current response as the last_id query parameter in your next request.


Response Fields

Manifest

FieldTypeDescription
idStringThe unique identifier for the manifest.
store_idStringThe Rendr store ID associated with the manifest.
brand_idStringThe brand identifier associated with the manifest.
statusStringThe current status of the manifest. See Manifest Statuses below.
manifest_groupStringThe carrier service group for this manifest (e.g. Express Post, Parcel Post).
manifest_delivery_typeStringThe delivery type classification used for this manifest.
servicesArray[String]The carrier services included in this manifest.
created_atString (ISO 8601)The date and time the manifest was created.
created_byString (email)The email address of the user or system that created the manifest.
manifest_deliveriesArrayThe deliveries included in this manifest. See ManifestDelivery below.
external_refObjectCarrier-side manifest reference data. See ExternalRef below.

ManifestDelivery

FieldTypeDescription
delivery_idStringThe Rendr delivery ID.
tracking_details.article_idStringThe carrier article ID assigned at manifest time.
tracking_details.consignment_idStringThe carrier consignment ID.
tracking_details.barcode_idStringThe carrier barcode ID for scanning at collection.

ExternalRef

FieldTypeDescription
created_atString (ISO 8601)The date and time the carrier-side manifest was created.
order_idStringThe carrier’s manifest or order reference number.
shipmentsArrayThe individual shipments within the manifest. See Shipment below.
order_summaryObjectAggregate totals for the manifest. See OrderSummary below.

Shipment

FieldTypeDescription
shipment_idStringThe carrier-assigned shipment ID.
shipment_referenceStringThe merchant reference for the shipment.
shipment_creation_dateString (ISO 8601)The date and time the shipment was created with the carrier.
itemsArrayThe individual items within the shipment. See ShipmentItem below.

ShipmentItem

FieldTypeDescription
item_idStringThe carrier-assigned item ID.
item_referenceStringThe merchant item reference.
product_idStringThe carrier product ID for this item.
weightNumberThe weight of the item in kilograms.
tracking_details.article_idStringThe carrier article ID for this item.
tracking_details.consignment_idStringThe carrier consignment ID for this item.
tracking_details.barcode_idStringThe carrier barcode ID for this item.
item_summary.statusStringThe current delivery status of this item.

OrderSummary

FieldTypeDescription
number_of_itemsNumberTotal number of parcels in the manifest.
number_of_shipmentsNumberTotal number of shipments in the manifest.
total_weightNumberTotal weight of all parcels in kilograms.
total_costNumberTotal shipping cost including GST, in dollars.
total_cost_ex_gstNumberTotal shipping cost excluding GST, in dollars.
total_gstNumberTotal GST amount, in dollars.

Manifest Statuses

StatusDescription
openDeliveries have been grouped into a manifest but it has not yet been finalised. No delivery progress has started.
in_processThe manifest has been submitted and deliveries are in progress. Not all deliveries have been completed.
completeAll deliveries included in the manifest have been successfully delivered.