action brandlovers_get_ticket_ticket_id_messages { label: "Get trouble ticket messages" description: "Returns trouble ticket history with all messages exchanged. Only tickets related to your seller will be returned. Attempt to read other tickets will return 403 (acess denied)." provider: brandlovers method: GET path: "/ticket/{ticketId}/messages" encoding: json input: { type: "object" properties: { authorization: { type: "string" } limit: { type: "string" } offset: { type: "string" } ticketId: { type: "string" } } required: ["authorization", "ticketId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }