Reopen Ticket
Reopens a specified ticket or updates the status to Assigned.
HTTP Request
POST /api/sonar/tickets/:guid/reopen
cURL Example
curl -H "Authorization: Bearer <API_KEY>" \
-X POST \
https://HOSTNAME/api/sonar/tickets/6206eb0e-fb44-4f13-82ca-d92454cfd35e/reopen
Request Parameter
Path Parameters
| Key | Type | Description | Note |
|---|---|---|---|
| guid | String | Ticket GUID | 36 characters |
Success Response
{}
Error Responses
Identifier is not in valid GUID format
HTTP status code 400
{
"error_code": "invalid-param-type",
"error_msg": "guid should be guid type."
}
Ticket is not found
HTTP status code 500
{
"error_code": "illegal-state",
"error_msg": "ticket not found: 201dc306-5ef7-4d4f-b872-1fa0f4d7dc57"
}