Create new shipment
To use this endpoint an “allocation” must exist for the order that’s being shipped. When an order is placed, fabric sends allocation details to external merchant system to create order fulfillment requirement details in an external system. With reference to the allocation that’s being shipped, users of this POST API can create shipment details for allocations.
Note: Shipment ID generated as part of the response is required for subsequent calls such as Acknowledge shipment (POST /shipments/{shipmentId}/acknowledge
) and Get shipment (GET /shipments/{shipmentId}
).
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
A header used by fabric to identify the tenant making the request. You must include tenant id in the authentication header for an API request to access any of fabric’s endpoints. You can retrieve the tenant id , which is also called account id, from Copilot. This header is required.
x-fabric-channel-id identifies the sales channel where the API request is being made; primarily for multichannel use cases. The channel ids are 12 corresponding to US and 13 corresponding to Canada. The default channel id is 12. This field is required.
Unique request ID
Body
Details to create shipment
Allocation ID for this shipment, generated by the fabric Allocation service through Create allocation (internal) endpoint, which occurs prior to Shipment Creation. This is mandatory to create a new shipment.
"112345678912340"
Merchant-defined shipment identifier
"78974156816152"
Merchant-defined custom attributes. This is a placeholder for addition info (in key: value pairs)
{ "attribute1": "value" }
Carton details
Carton details
Invoice ID generated from fabric Invoice service during shipment creation. Note: Invoices are only created for Shipments where merchants have payment Capture at Shipment feature enabled. The value will be “Null” if merchants don't have “Capture at Shipment” feature enabled.
"63ef4360aafa8a7f5247fe48"
Unique value to identify ship-from location. This must be the locationNumber
stored in the fabric Location service.
"132412"
Location type, such as distribution center (DC) or warehouse. This must be the type stored in the fabric Location service.
"DC"
Master tracking number for all cartons in the shipment
"TX112345678"
Merchant-defined purchase order number
"1125"
Recipient details
Shipment recipient details
Reshipment reason code
"Order is missing"
Scratched items
Details of scratched items in shipment
Address details
Ship-to ID generated in the response of Create Shipping endpoint of Shipping service
"sg6683620405"
Shipment's autogenerated unique id
"627963716b19511e8a3a631b"
Order shipment time (UTC)
"2023-04-06T07:58:30.996Z"
Current shipment status (fabric-defined codes). For standard shipments, the initial status would be SHIPMENT_CREATED. For pickup shipment, the initial status would be PICKUP_CREATED and once the customer picks up, the status changes to PICKUP_COMPLETED
SHIPMENT_CREATED
, SHIPMENT_UPDATED
, SHIPMENT_CANCELLED
, PICKUP_CREATED
, PICKUP_COMPLETED
, SHIPMENT_RETURN_PENDING
, SHIPMENT_RETURN_RECEIVED
, SHIPMENT_PARTIALLY_DELIVERED
, SHIPMENT_DELIVERED
, SHIPMENT_ERROR
"SHIPMENT_CREATED"
Shipment subtype. Free-form text to add another layer of classification, if required.
"COD"
Total number of cartons in the given shipment.
2
Shipment types
STANDARD
, RESHIP
, RETURN
, SCRATCH
, PENDING_RETURN
, PICKUP
, TRANSFER
"STANDARD"
Vendor ID. Applicable in dropshipping scenarios to indicate the vendor responsible for the given item.
"56"
Response
Shipment details
The current version of the shipment document. This integer indicates the number of times the shipment has been updated by any operation.
2
System-generated allocation ID (UUID) from the Create allocation endpoint of fabric Allocation service. It refers to the given shipment. Note: Allocation occurs prior to Shipment Creation. allocationId
is mandatory to create a Shipment.
"6413e3d3fd03a35efccb426e"
Audit log details
Details for updating shipment
Carton details
Carton details
Shipment creation time (UTC)
"2023-04-06T07:58:30.996Z"
Invoice ID generated from fabric Invoice service during shipment creation. Note: Invoices are only created for Shipments where merchants have payment Capture at Shipment feature enabled. The value will be “Null” if merchants don't have “Capture at Shipment” feature enabled.
"63ef4360aafa8a7f5247fe48"
Unique value to identify ship-from location. This must be the locationNumber
stored in the fabric Location service.
"132412"
Location type, such as distribution center (DC) or warehouse
"DC"
Master tracking number for all cartons in the shipment
"TX112345678"
List of order numbers associated with a shipment. Note: Currently, a shipment can be associated with only one order. In the future, this property will support a scenario where a customer places a second order for the same product immediately after their first order. Multiple order numbers can be linked to one shipment in such cases.
Merchant-defined purchase order number
"1125"
Recipient details
Shipment recipient details
The reshipment reason code.
"Order is missing"
Details of scratched items
Customer may cancel allocation line items as part of the shipment post request. In fabric Shipments service, this is called 'Scratched Items' or 'scratchedItems'.
Address details
Ship-to ID generated in the response of Create shipping endpoint of Shipping service
"1"
System-generated shipment ID (UUID)
"627963716b19511e8a3a631b"
Merchant-defined unique shipment identifier. Note: It can be optionally generated by fabric by using resource generator feature in the Configuration service
"78974156816152"
Order shipment time (UTC)
"2023-04-06T07:58:30.996Z"
Current shipment status (fabric-defined codes). Note: For standard shipments, the status would be SHIPMENT_CREATED. For pickup shipment, the initial status would be PICKUP_CREATED and once the customer picks up, the status changes to PICKUP_COMPLETED
SHIPMENT_CREATED
, SHIPMENT_UPDATED
, SHIPMENT_CANCELLED
, PICKUP_CREATED
, PICKUP_COMPLETED
, SHIPMENT_DELIVERED
, SHIPMENT_RETURN_PENDING
, SHIPMENT_RETURN_RECEIVED
, SHIPMENT_PARTIALLY_DELIVERED
"SHIPMENT_CREATED"
Shipment subtype, for another layer of classification. There are no pre-defined values; the possible value is Cash On Delivery (COD)
"COD"
Total number of cartons in the given shipment. There can be only one carton per trackingNumber.
2
Shipment types
STANDARD
, RESHIP
, RETURN
, SCRATCH
, PENDING_RETURN
, PICKUP
, TRANSFER
"STANDARD"
Time of last update to shipment (UTC)
"2023-04-06T07:58:30.996Z"
Vendor ID. Applicable in dropshipping scenarios to indicate the vendor responsible for the given item.
"56"
Was this page helpful?