POST api/ticket/closeticket

Close a ticket

Resource Information
Requires authentication? Yes (HTTP authentication using user name and API key)
Post content type application/json
Response formats JSON
Example Request Content
 {
	"ticketNo":"1",
	"description":"Ticket description",
	"problemCategoryId":"2",
	"isSendEmailToIncidentContact":false
}	
Example URL
  api/ticket/closeticket  
Parameters
Name Description
ticketNo
required
Id of the ticket
description
required
description for the ticket
problemCategoryId
required
Id of the problem category
isSendEmailToIncidentContact
optional
The value to decide whether to email to incidental contact Or not
Example Result
{
    "SuccessMessage": "Ticket closed successfully!"
}