New Issue
POST
https://app.leiga.com/openapi/api/issue/add
Issue Module(issue)
Request Request Example
Shell
JavaScript
Java
Swift
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
}'
Response Response Example
{
"code": "0",
"data": {
"id": 1
}
}
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
Responses
Modified at 2024-06-12 06:46:49