action shipengine_tag_shipment { label: "Add Tag to Shipment" description: "Add a tag to the shipment object" provider: shipengine method: POST path: "/v1/shipments/{shipment_id}/tags/{tag_name}" encoding: json output: { type: "object" description: "A shipment add tag response body" required: ["shipment_id", "tag"] properties: { shipment_id: { description: "A string that uniquely identifies the shipment" type: "object" } tag: { description: "The tag that is now associated with this shipment" type: "object" } } additionalProperties: false } }