action brandlovers_get_orders_shipments_shipped { label: "Returns a list of shipments shipped" description: "Returns a list of shipments shipped. By Default returns items ordered by dateCreated folowed by last update" provider: brandlovers method: GET path: "/orders/shipments/shipped" encoding: json input: { type: "object" properties: { authorization: { type: "string" } limit: { type: "string" } offset: { type: "string" } status: { type: "string" } } required: ["authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }