Download OpenAPI specification:Download
API for managing inbound shipments and their extra items.
Lists inbound shipments, optionally filtered by merchant, status, the quick_filter=open group shortcut, the merchant's reference (merchants_ref), a creation-date range (created_at_min/created_at_max), an estimated-arrival-date range (estimated_arrival_date_min/estimated_arrival_date_max), an originating order via original_order_id, a contained product via has_product_id, or a free-form q search across sender name, merchants_ref, and Logitrail ID.
| merchant | string Example: merchant=testmerchant.logitrail.com Owning merchant |
| status | string (Status of the inbound shipment.) Enum: "initial" "confirmed" "en_route" "arrived_at_warehouse" "processed" "processing" "problem" "cancelled" "deleted" The current status of the inbound shipment. This is a read-only property. |
| q | string non-empty Example: q=Acme Free-form single-field search. Matches our_id and merchants_ref as case-insensitive prefixes; matches sender_name as a case-insensitive substring when the query is at least 3 characters long. |
| merchants_ref | string non-empty Example: merchants_ref=PO-2026-001 Filter by the merchant's reference (exact match) on the inbound shipment. |
string or string Example: created_at_min=2026-04-01 Inclusive lower bound on the inbound shipment creation timestamp. Accepts YYYY-MM-DD (interpreted as start-of-day UTC) or a full ISO 8601 datetime. | |
string or string Example: created_at_max=2026-04-30T23:59:59Z Inclusive upper bound on the inbound shipment creation timestamp. Accepts YYYY-MM-DD (interpreted as end-of-day UTC) or a full ISO 8601 datetime. | |
| estimated_arrival_date_min | string <date> ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[... Example: estimated_arrival_date_min=2026-05-01 Inclusive lower bound on the inbound shipment |
| estimated_arrival_date_max | string <date> ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[... Example: estimated_arrival_date_max=2026-05-31 Inclusive upper bound on the inbound shipment |
| original_order_id | string^[a-f0-9]{24}$ Example: original_order_id=6585aa3e6629101641191794 Returns only shipments where at least one line item references the given order via |
| has_product_id | string^[a-f0-9]{24}$ Example: has_product_id=662a66fac1a9fa33f20f9702 Returns only shipments where at least one line item references the given product via |
| quick_filter | string Value: "open" Example: quick_filter=open Status group shortcut. |
| limit | number [ 1 .. 1000 ] Default: 250 |
{- "inbound_shipments": [
- {
- "merchants_ref": "string",
- "sender_name": "string",
- "priority": -10000000,
- "merchant_remarks": "string",
- "estimated_arrival_date": "2019-08-24",
- "id": "5f8d0f8d8f8d8f8d8f8d8f8d",
- "status": "initial",
- "merchant": "string",
- "created": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "our_id": "string",
- "type": "purchase_order",
- "items": [
- {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
], - "extra_items": [
- {
- "id": "string",
- "item_details": {
- "title": "string",
- "gtin": "string"
}, - "reason_code": "exp_date",
- "quantity": 1,
- "remarks": "string",
- "merchants_decision": {
- "code": "inbound_shipment_modified_to_match",
- "merchant_remarks": "string",
- "decision_stamp": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}
}
}
], - "actual_arrival_date": "2019-08-24"
}
]
}Creates a new inbound shipment in the initial status for the merchant.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
{- "inbound_shipment": {
- "merchants_ref": "string",
- "sender_name": "string",
- "priority": -10000000,
- "merchant_remarks": "string",
- "estimated_arrival_date": "2019-08-24",
- "id": "5f8d0f8d8f8d8f8d8f8d8f8d",
- "status": "initial",
- "merchant": "string",
- "created": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "our_id": "string",
- "type": "purchase_order",
- "items": [
- {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
], - "extra_items": [
- {
- "id": "string",
- "item_details": {
- "title": "string",
- "gtin": "string"
}, - "reason_code": "exp_date",
- "quantity": 1,
- "remarks": "string",
- "merchants_decision": {
- "code": "inbound_shipment_modified_to_match",
- "merchant_remarks": "string",
- "decision_stamp": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}
}
}
], - "actual_arrival_date": "2019-08-24"
}
}Returns per-status counts of the merchant inbound shipments.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
{- "inbound_shipment_statistics": {
- "initial_count": 0,
- "confirmed_count": 0,
- "arrived_count": 0,
- "problem_count": 0,
- "processing_count": 0
}
}Returns arrival estimations for a single product across open inbound shipments of the merchant.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
{- "arrival_estimations": [
- {
- "product": {
- "id": "string"
}, - "inbound_shipment": {
- "id": "string",
- "estimated_arrival_date": "2019-08-24",
- "sender_name": "string"
}, - "estimated_on_shelf_at": "2019-08-24T14:15:22Z",
- "arriving_amount": 0
}
]
}{- "inbound_shipment": {
- "merchants_ref": "string",
- "sender_name": "string",
- "priority": -10000000,
- "merchant_remarks": "string",
- "estimated_arrival_date": "2019-08-24",
- "id": "5f8d0f8d8f8d8f8d8f8d8f8d",
- "status": "initial",
- "merchant": "string",
- "created": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "our_id": "string",
- "type": "purchase_order",
- "items": [
- {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
], - "extra_items": [
- {
- "id": "string",
- "item_details": {
- "title": "string",
- "gtin": "string"
}, - "reason_code": "exp_date",
- "quantity": 1,
- "remarks": "string",
- "merchants_decision": {
- "code": "inbound_shipment_modified_to_match",
- "merchant_remarks": "string",
- "decision_stamp": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}
}
}
], - "actual_arrival_date": "2019-08-24"
}
}Partially updates an inbound shipment. Only fields present in the request body are modified; omitted fields are left unchanged. Updating items replaces the full item list. Returns 409 if the shipment is in a status that no longer allows edits (arrived_at_warehouse, processing, processed, problem, cancelled, or deleted).
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
required | object Inbound Shipment Data for Update | ||||||||||||
| |||||||||||||
{- "inbound_shipment": {
- "merchants_ref": "string",
- "sender_name": "string",
- "priority": -10000000,
- "merchant_remarks": "string",
- "estimated_arrival_date": "2019-08-24",
- "items": [
- {
- "product": {
- "id": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "original_order": {
- "id": "string"
}
}
]
}
}{- "inbound_shipment": {
- "merchants_ref": "string",
- "sender_name": "string",
- "priority": -10000000,
- "merchant_remarks": "string",
- "estimated_arrival_date": "2019-08-24",
- "id": "5f8d0f8d8f8d8f8d8f8d8f8d",
- "status": "initial",
- "merchant": "string",
- "created": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "our_id": "string",
- "type": "purchase_order",
- "items": [
- {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
], - "extra_items": [
- {
- "id": "string",
- "item_details": {
- "title": "string",
- "gtin": "string"
}, - "reason_code": "exp_date",
- "quantity": 1,
- "remarks": "string",
- "merchants_decision": {
- "code": "inbound_shipment_modified_to_match",
- "merchant_remarks": "string",
- "decision_stamp": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}
}
}
], - "actual_arrival_date": "2019-08-24"
}
}Cancels an inbound shipment, transitioning it to the cancelled status. Returns 409 if the shipment is already being processed at the warehouse (arrived_at_warehouse or processing status).
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
{- "inbound_shipment": {
- "merchants_ref": "string",
- "sender_name": "string",
- "priority": -10000000,
- "merchant_remarks": "string",
- "estimated_arrival_date": "2019-08-24",
- "id": "5f8d0f8d8f8d8f8d8f8d8f8d",
- "status": "initial",
- "merchant": "string",
- "created": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "our_id": "string",
- "type": "purchase_order",
- "items": [
- {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
], - "extra_items": [
- {
- "id": "string",
- "item_details": {
- "title": "string",
- "gtin": "string"
}, - "reason_code": "exp_date",
- "quantity": 1,
- "remarks": "string",
- "merchants_decision": {
- "code": "inbound_shipment_modified_to_match",
- "merchant_remarks": "string",
- "decision_stamp": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}
}
}
], - "actual_arrival_date": "2019-08-24"
}
}Partially updates a single line item by its item_id. Only the supplied fields are modified; omitted fields are left unchanged. Use this endpoint instead of the full-shipment PATCH when editing one item to avoid race conditions with concurrent updates to other items.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
required | object Fields to update on the line item. | ||||||||
| |||||||||
{- "item": {
- "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "original_order": {
- "id": "string"
}
}
}{- "item": {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
}Removes a single line item by its item_id. Returns 409 if the shipment status no longer allows edits, or if the item already has units arrived in the warehouse.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
{- "message": "string",
- "error_code": "VALIDATION_ERROR",
- "validation_errors": [
- null
]
}Appends a single new line item to the shipment. Returns 409 if the shipment status no longer allows edits.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
required | object The line item to add to the shipment. | ||||||||||
| |||||||||||
{- "item": {
- "product": {
- "id": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "original_order": {
- "id": "string"
}
}
}{- "item": {
- "item_id": "string",
- "product": {
- "id": "string",
- "sku": "string",
- "gtin": "string",
- "name": "string",
- "vendor_skus": [
- {
- "vendor": {
- "name": "string"
}, - "vendor_sku": "string",
- "vendor_barcode": "string"
}
]
}, - "quantity": 1,
- "unit_purchase_price": 0,
- "currency": "str",
- "stocked_quantity": 9007199254740991,
- "stocked_batches": [
- {
- "arrival_batch_id": -9007199254740991,
- "batch_number": "string",
- "best_before_date": "2019-08-24",
- "quantity": 1,
- "first_seen_at": "2019-08-24T14:15:22Z",
- "stocked_location": "string"
}
], - "extra_services": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
], - "original_order": {
- "id": "string"
}
}
}Attaches a service that operates at shipment scope (e.g. arrival inspection, full-pallet handling, or any service with applicable_scopes covering inbound_shipment) to an inbound shipment. The service is identified by id or code; the server resolves the catalog row, verifies the service is enabled, applicable to inbound-shipment scope, and available to the requesting merchant.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
required | object Service attachment to add to the inbound shipment as a whole. Provide the service reference by | ||||||||
| |||||||||
{- "service_attachment": {
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string"
}
}{- "service_attachment": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
}Attaches one or more services (assembly, labelling, inspection, special packaging, etc.) to a specific line item on an inbound shipment. The service is identified by id or code; the server resolves the catalog row, verifies the service is enabled, applicable to inbound-shipment-item scope, and available to the requesting merchant. The attachment is recorded with quantity, optional service-specific parameters, optional merchant remarks, and a server-generated created stamp.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
required | object Service attachment to add to the inbound shipment line item. Provide the service reference by | ||||||||
| |||||||||
{- "service_attachment": {
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string"
}
}{- "service_attachment": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "service": {
- "id": "string",
- "code": "string"
}, - "quantity": 1,
- "parameters": {
- "property1": null,
- "property2": null
}, - "merchant_remarks": "string",
- "created_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "archived_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}, - "status": "active",
- "completion_stamp": {
- "ts": "string",
- "user": "string",
- "source": "string",
- "p": {
- "property1": null,
- "property2": null
}
}
}
}Applies the merchant's handling decision to an extra-item subdocument. Accepts only the merchants_decision envelope; the merchant may set code and/or merchant_remarks together or separately, but no other extra-item fields.
| x-logitrail-merchant-id required | string non-empty Logitrail's Merchant ID. |
required | object Merchant-allowed extra-item updates. Only the merchants_decision envelope is settable; other fields require the internal endpoint. | ||||||||
| |||||||||
{- "extra_item": {
- "merchants_decision": {
- "code": "string",
- "merchant_remarks": "string"
}
}
}{- "extra_item": {
- "id": "string",
- "item_details": {
- "title": "string",
- "gtin": "string"
}, - "reason_code": "exp_date",
- "quantity": 1,
- "remarks": "string",
- "merchants_decision": {
- "code": "inbound_shipment_modified_to_match",
- "merchant_remarks": "string",
- "decision_stamp": {
- "ts": "2019-08-24T14:15:22Z",
- "user": "string"
}
}
}
}Returns the attachment list for a single inbound shipment with temporary download URLs valid for 30 minutes.
{- "attachments": [
- {
- "id": "5f9b1b9b9b9b9b9b9b9b9b9b",
- "uploaded_at": "2019-08-24T14:15:22Z",
- "file_name": "string",
- "mime": "string",
- "is_archived": true,
- "download_link": {
- "url": "string",
- "valid_until": "2019-08-24T14:15:22Z"
}
}
]
}