action api2cart_order_shipment_info { label: "OrderShipmentInfo" description: "Get information of shipment." provider: api2cart method: GET path: "/order.shipment.info.json" encoding: json input: { type: "object" properties: { exclude: { type: "string" } id: { type: "string" } order_id: { type: "string" } params: { type: "string" } response_fields: { type: "string" } start: { type: "integer" } store_id: { type: "string" } } required: ["id", "order_id"] additionalProperties: false } output: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } pagination: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } next: { type: "string" } previous: { type: "string" } } } result: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } shipment: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } created_at: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } format: { type: "string" } value: { type: "string" } } } custom_fields: { type: "object" } id: { type: "string" } is_shipped: { type: "boolean" } items: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } model: { type: "string" } name: { type: "string" } order_product_id: { type: "string" } price: { type: "number" } product_id: { type: "string" } quantity: { type: "number" } variant_id: { type: "string" } } } } modified_time: { type: "object" additionalProperties: true } order_id: { type: "string" } shipment_provider: { type: "string" } tracking_numbers: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } carrier_id: { type: "string" } custom_fields: { type: "object" } tracking_number: { type: "string" } } } } warehouse_id: { type: "string" } } } } shipment_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }