action billbee_order_api_tags_update { label: "Sets the tags attached to an order" description: "All existing tags will be replaced by the given list of new tags. To just add tags, use POST method." provider: billbee method: PUT path: "/api/v1/orders/{id}/tags" encoding: form input: { type: "object" properties: { Tags: { type: "array" items: { type: "string" } } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }