action brandlovers_put_ticket_ticket_id_status { label: "Update trouble ticket status" description: "Alows the seller to update the status of a trouble ticket" provider: brandlovers method: PUT path: "/ticket/{ticketId}/status" encoding: json input: { type: "object" properties: { authorization: { type: "string" } ticketId: { type: "string" } } required: ["authorization", "ticketId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }