action brandlovers_get_order_order_id { label: "Returns all details of a order" description: "Returns all details of a single order, including last status, items shipped or not." provider: brandlovers method: GET path: "/order/{orderId}" encoding: json input: { type: "object" properties: { authorization: { type: "string" } orderId: { type: "string" } } required: ["authorization", "orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }