curl --location --request POST 'https://app.leiga.com/openapi/api/issue/add' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"issueTypeId": 1,
"data": {
"summary": "xxx",
"estimatePoint": 1,
"ready": 0,
"sprint": 1,
"description": "yyy",
"epic": 1,
"assignee": 1,
"priority": 1,
"status": 1
},
"projectId": 1
}'
{
"code": "0",
"data": {
"id": 1
}
}