Skip to main content
POST
/
issues
/
{issue_id}
/
close-feedback
Close issue with feedback
curl --request POST \
  --url https://api.example.com/issues/{issue_id}/close-feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "action": "<string>",
  "category": "<string>",
  "reason_text": "<string>"
}
'
{
  "detail": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

issue_id
string
required

Issue ID.

Body

application/json
project_id
string
required
action
string
required
category
string
reason_text
string

Response

Issue closed with feedback recorded