action jumpseller_get_order_id_fulfillments_json { label: "Retrieve the Fulfillments associated with the Order." provider: jumpseller method: GET path: "/order/{id}/fulfillments.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { category: { type: "object" properties: { external_id: { type: "string" description: "Unique identifier of the Fulfillment used by the tracking company" } id: { type: "integer" format: "int32" description: "Unique identifier of the Fulfillment" } order_id: { type: "string" description: "Order associated with the fulfillment" } service_type: { type: "string" description: "Type of Service requested to the tracking company" } shipment_status: { type: "string" description: "Status of the fulfillment" } tracking_company: { type: "string" description: "Tracking company responsible for the fulfillment" } tracking_number: { type: "string" description: "Tracking Number associated with the fulfillment" } type: { type: "string" description: "Type of fulfillment Service used" } } } } } } }