action brandlovers_post_order_order_id_shipment_sent { label: "Update new order to include shipment information" description: "Updates order to include shipment shiped information. This endpoint can be used to include a single or multiple shipments for any give order. In order to inform that all items of a order where shipped list all of them, including applicable quantities in the payload." provider: brandlovers method: POST path: "/order/{orderId}/shipment/sent" encoding: json input: { type: "object" properties: { authorization: { type: "string" } orderId: { type: "string" } } required: ["authorization", "orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }