Get an issue status
This endpoint retrieves response's issue status.
Request
GET https://api.nicereply.com/responses/<ID>/issue-status
Path Parameters
| Parameter | Data Type | Description | 
|---|---|---|
| ID | UUID | ID of the response. | 
Response
| Field | Type | Is Nullable | Description | 
|---|---|---|---|
| issue_status | String enum | No | Can be NOT_ISSUE,UNRESOLVED,RESOLVED,IGNORED | 
200 OK
{
  "data": {
    "issue_status": "UNRESOLVED"
  }
}