Resolve the specified ticket
Scope:
client
or
operator
id
required
The id of the ticket to be resolved
solution
required
The solution provided
comment_type
required
Comment type should be "resolved"
message
The response message
status
The system response status. Will be ok or error
curl
example request
1
curl -X POST -d '{"solution":"Test Solution","comment_type":"resolved"}'
2
-H "Content-Type: application/json"
3
-H "Authorization: Bearer {{Oauth Token}}"
4
https://developer.livehelpnow.net/api/ticket/{{1234567}}/resolve
example response
1
{
2
"message"
: "Ticket resolved successfully",
3
"status"
: "ok"
4
}