action shipengine_create_label_from_shipment { label: "Purchase Label with Shipment ID" description: "Purchase a label using a shipment ID that has already been created with the desired address and\npackage info.\n" provider: shipengine method: POST path: "/v1/labels/shipment/{shipment_id}" encoding: json input: { type: "object" description: "A purchase label without shipment request body" properties: { display_scheme: { description: "The display format that the label should be shown in." type: "object" } label_download_type: { type: "object" } label_format: { type: "object" } label_layout: { type: "object" } validate_address: { type: "object" } } additionalProperties: false } output: { type: "object" description: "A create label from shipment response body" additionalProperties: false } }