action shipengine_list_manifests { label: "List Manifests" description: "Similar to querying shipments, we allow you to query manifests since there will likely be a large number over a long period of time." provider: shipengine method: GET path: "/v1/manifests" encoding: json input: { type: "object" properties: { carrier_id: { type: "string" description: "A string that uniquely identifies a ShipEngine resource, such as a carrier, label, shipment, etc." } created_at_end: { type: "string" format: "date-time" } created_at_start: { type: "string" format: "date-time" } label_ids: { type: "array" description: "Array of label ids" items: { type: "string" description: "A string that uniquely identifies a ShipEngine resource, such as a carrier, label, shipment, etc." } } page: { type: "integer" format: "int32" } page_size: { type: "integer" format: "int32" } ship_date_end: { type: "string" format: "date-time" } ship_date_start: { type: "string" format: "date-time" } warehouse_id: { type: "string" description: "A string that uniquely identifies a ShipEngine resource, such as a carrier, label, shipment, etc." } } additionalProperties: false } output: { type: "object" description: "A list manifests response body" required: ["links", "manifests", "page", "pages", "total"] properties: { links: { description: "Helpful links to other pages of results" type: "object" } manifests: { type: "array" description: "The list of available manifests" items: { description: "A single manifest" type: "object" } } page: { type: "integer" format: "int32" description: "Current page of the list manifests results" } pages: { type: "integer" format: "int32" description: "Total number of pages for list manifests results" } total: { type: "integer" format: "int64" description: "The total number of manifests returned" } } additionalProperties: false } }