Close Tickets API
POST /closeTickets
Description
This API endpoint allows a user or admin to close multiple support tickets at once by providing a list of ticket IDs. Closing tickets changes their status to indicate that the issues have been resolved or the inquiries have been addressed.
Request Body
The request utilizes GraphQL to perform the closeTickets
mutation.
Mutation:
mutation closeTickets ($id: [Int]!) {
closeTickets (id: $id) {
id
subject
text
category
status
createdAt
}
}