curl --location --request POST 'https://open.teambition.com/api/tasklist/create' \
--header 'Authorization: Bearer <appAccessToken>' \
--header 'X-Tenant-Id: 50c32af35a87e6b2...' \
--header 'X-Tenant-Type: organization' \
--header 'Content-Type: application/json' \
--data-raw '{
"operatorId": "5a28e2036176bbde...",
"projectId": "5e0d98527d161c00...",
"tasklists": [
{
"taskgroupId": "5d5798a2d4268209...",
"name": "列表1"
}
]
}'
{
"code": 200,
"errorMessage": "",
"result": [
{
"tasklistId": "5d5798a2d4268209...",
"taskgroupId": "5d5798a2d4268209...",
"projectId": "5e0d98527d161c00...",
"name": "列表1",
"creatorId": "5a28e2036176bbde...",
"created": "2019-12-01T10:30:00Z",
"modifierId": "5a28e2036176bbde...",
"updated": "2019-12-01T10:30:00Z"
}
]
}