action jumpseller_get_orders_id_history_json { label: "Retrieve all Order History." provider: jumpseller method: GET path: "/orders/{id}/history.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { order_history: { type: "object" properties: { created_at: { type: "string" description: "Creation date of the order history" } id: { type: "integer" format: "int32" description: "Unique identifier of the Order History" } message: { type: "string" description: "Message of the Order History" } } } } } } }