action billbee_order_api_add_shipment { label: "Add a shipment to a given order" provider: billbee method: POST path: "/api/v1/orders/{id}/shipment" encoding: form input: { type: "object" properties: { CarrierId: { type: "integer" format: "int32" description: "Optional the id of a shipping carrier that should be assigend to the shipment \nWill override the carrier from the shipment product. \nPlease use the integer value from this Enumeration: \n{Billbee.Interfaces.Shipping.Enums.ShippingCarrier}" } Comment: { type: "string" description: "Optional a text stored with the shipment" } OrderId: { type: "string" description: "Optional a differing order number of the shipment if available" } ShipmentType: { type: "integer" format: "int32" description: "0 if Shipment, 1 if Retoure \n{Billbee.Interfaces.Shipping.Enums.ShipmentTypeEnum}" } ShippingId: { type: "string" description: "The id of the shipment (Sendungsnummer/trackingid)" } ShippingProviderId: { type: "integer" format: "int64" description: "Optional the id of a shipping provider existing in the billbee account that should be assigned to the shipment" } ShippingProviderProductId: { type: "integer" format: "int64" description: "Optional the id of a shipping provider product that should be assigend to the shipment" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }