action brandlovers_post_ticket_ticket_id_message { label: "Add new message to trouble ticket" description: "Add a new message to this trouble ticket. Messages can be `CUSTOMER` (customer will be able to see it) or `INTERNAL`." provider: brandlovers method: POST path: "/ticket/{ticketId}/message" encoding: json input: { type: "object" properties: { authorization: { type: "string" } ticketId: { type: "string" } } required: ["authorization", "ticketId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }