action brandlovers_post_order_order_id_shipment_delivered { label: "Confirms that a shipment was delivered" description: "Confirms that a shipment was delivered. Must inform quantity of successfully deliverd items even if items deliverd was less than the original order" provider: brandlovers method: POST path: "/order/{orderId}/shipment/delivered" encoding: json input: { type: "object" properties: { authorization: { type: "string" } orderId: { type: "string" } } required: ["authorization", "orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }