action shipengine_create_shipments { label: "Create Shipments" description: "Create one or multiple shipments." provider: shipengine method: POST path: "/v1/shipments" encoding: json input: { type: "object" description: "A create shipments request body" required: ["shipments"] properties: { shipments: { type: "array" description: "An array of shipments to be created." items: { type: "object" } } } additionalProperties: false } output: { type: "object" description: "A create shipments response body" required: ["has_errors", "shipments"] properties: { has_errors: { type: "boolean" description: "Indicates if errors occured while creating the shipments" } shipments: { type: "array" description: "An array of shipments that were created." items: { description: "The shipment that was created." type: "object" } } } additionalProperties: false } }