action billbee_order_api_tags_create { label: "Attach one or more tags to an order" description: "When a tag is already attached, it is ignored. Tags are not case sensitive. All given tags are added to the existing tags." provider: billbee method: POST 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" } }