Parcels
Models
Parcel Model
A model representing a physical package within the system, which can be associated with either a fulfillment or manifest.
object "parcel"
The description of the model.
organization_id string
Organization ID derived from either the associated fulfillment or manifest prefixed with org_
.
id string
Unique identifier for the parcel, prefixed with prcl_
.
length float
The length of the parcel in inches. Defaults to 0.
width float
The width of the parcel in inches. Defaults to 0.
height float
The height of the parcel in inches. Defaults to 0.
weight float
The weight of the parcel in pounds (lbs). Defaults to 0.
type string
Package type identifier, either referencing predefined package templates or custom package templates. See Predefined Packages
unpacked boolean
Indicates whether parcel has been unpacked. Defaults to false.
location_id string
Identifies where the parcel is currently located. The system determines this either from layout, fulfillment, or manifest location. If none are available, defaults to null.
layout Object
Layout information for the parcel.
Show Details
Location details include
status string
The current status of the parcel. This field indicates the operational state of the parcel within the system. It's default value will be in_storage
. See All Parcel Statuses
special_handling_tags string[]
An array of tags for special handling of the parcel. These tags are used to indicate specific handling requirements or conditions that need to be considered during the processing and transportation of the parcel. See tags
tracking_number string
The unique identifier assigned to the parcel for tracking its movement throughout the shipping process.
defective boolean
Indicates whether the parcel is considered defective. Defaults to false.
missing boolean
Indicates whether the parcel is reported as missing. Defaults to false.
label_url string
The URL that points to the shipping label for the parcel. This link allows users to access and print the label, which is necessary for shipping and tracking the parcel.
contents Content[]
An array of contents within the parcel. Each item in this array represents an individual content piece included in the parcel, which can be an item, asset, or any other relevant entity.
inventory Content[]
Same as content
external_container_id string
The ID of the external container associated with the parcel.
container_number string
The container number associated with the parcel.
updated_by string
The ID of the user or key who last updated this parcel.
manifest_id string
The ID of the manifest associated with this parcel.
fulfillment_id string
The ID of the fulfillment associated with this parcel.
received boolean
Indicates if the parcel has been received.
order_type string
The type of the order associated with the parcel. It is set to fulfillment
if the parcel has an associated fulfillment with an order_number; otherwise, it defaults to manifest
order_number string
The order number associated with the parcel. It is set to the order_number from the associated fulfillment if available; otherwise, it defaults to the order_number from the associated manifest. If neither is present, it will be null.
updated_at integer
Time in epoch seconds when this resource was last updated.
created_at integer
Time in epoch seconds when this resource was created.
sender Object
Details of the sender associated with the parcel.
Show Details
recipient Object
Details of the recipient associated with the parcel.
Show Details
_search object
A special property that will be included if searching through parcels. This is a flat object that contains various properties related to the search results. Each property may include <mark>
tags around characters that have matched the search query, allowing for easy highlighting in the user interface. The properties within this object provide relevant information about the search results, such as tracking numbers, container_number, relevance score, and the original query used for the search.
Show Details
checksum string
A hash value computed from the current parcel configuration. This value gets updated whenever the parcel changes.