action shipengine_create_label { label: "Purchase Label" description: "Purchase and print a label for shipment" provider: shipengine method: POST path: "/v1/labels" encoding: json input: { type: "object" description: "A purchase label request body" required: ["shipment"] properties: { ship_from_service_point_id: { type: "string" description: "A unique identifier for a carrier drop off point where a merchant plans to deliver packages. This will take precedence over a shipment's ship from address." } ship_to_service_point_id: { type: "string" description: "A unique identifier for a carrier service point where the shipment will be delivered by the carrier. This will take precedence over a shipment's ship to address." } } additionalProperties: false } output: { type: "object" description: "A create label response body" required: ["batch_id", "carrier_code", "carrier_id", "charge_event", "created_at", "display_scheme", "form_download", "insurance_claim", "insurance_cost", "is_international", "is_return_label", "label_download", "label_format", "label_id", "label_image_id", "label_layout", "package_code", "packages", "rma_number", "service_code", "ship_date", "shipment_cost", "shipment_id", "status", "trackable", "tracking_number", "tracking_status", "voided", "voided_at"] additionalProperties: false } }