action brandlovers_get_orders_shipments_delivered { label: "Returns list of shipments" description: "Returns list of shipments. By default this will return list of the last shipments ordered by dateCreated, folowed by last update date." provider: brandlovers method: GET path: "/orders/shipments/delivered" 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 } }