curl --location --request PATCH 'https://app.leiga.com/openapi/api/issue/update' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"summary": "xxx",
"owner": 1,
"estimatePoint": 1,
"follows": [
1
],
"description": "xxx",
"assignee": 1,
"label": [
1
],
"priority": 1,
"status": 1
},
"id": 1
}'
{
"code": "0",
"data": {
"success": true
}
}