Batch Add Subtasks
POST
https://app.leiga.com/openapi/api/issue/batch-add-subtask
Issue Module(issue)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.leiga.com/openapi/api/issue/batch-add-subtask' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"issueId": 1,
"datas": [
{
"summary": "2",
"remainingLabour": 1,
"estimateLabour": 2,
"assignee": 1000001,
"startDate": 1676696324262,
"status": 1848685
}
]
}'
Response Response Example
{
"code": "0",
"data": {
"issueAddVOList": [
{
"id": 1
},
{
"id": 2
}
]
}
}
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