{
"Action": "DescribeIssueListWithPage",
"ProjectName": "demo-project",
"IssueType": "ALL",
"PageNumber": 1,
"PageSize": 20,
"Conditions": [
{
"Key": "STATUS_TYPE",
"Value": "TODO"
},
{
"Key": "ISSUE_TYPE_ID",
"Value": "1,2"
},
{
"Key": "ASSIGNEE",
"Value": "1,2,3"
},
{
"Key": "CUSTOM",
"CustomFieldId": 1,
"Value": "please fill custom field value id"
}
]
}
curl --location -g --request POST 'https://.coding.net/open-api?Action=DescribeIssueListWithPage' \
--header 'AccessToken;' \
--header 'Action;' \
--header 'Content-Type: application/json' \
--data-raw '{
"Action": "DescribeIssueListWithPage",
"ProjectName": "demo-project",
"IssueType": "ALL",
"PageNumber": 1,
"PageSize": 20,
"Conditions": [
{
"Key": "STATUS_TYPE",
"Value": "TODO"
},
{
"Key": "ISSUE_TYPE_ID",
"Value": "1,2"
},
{
"Key": "ASSIGNEE",
"Value": "1,2,3"
},
{
"Key": "CUSTOM",
"CustomFieldId": 1,
"Value": "please fill custom field value id"
}
]
}'{
"Response": {
"IssueList": [
{
"ParentType": "string",
"Code": 0,
"Type": "string",
"IssueTypeId": 0,
"Name": "string",
"Description": "string",
"IterationId": 0,
"IssueStatusId": 0,
"IssueStatusName": "string",
"IssueStatusType": "string",
"Priority": "string",
"AssigneeId": 0,
"StartDate": 0,
"DueDate": 0,
"WorkingHours": 0,
"CreatorId": 0,
"StoryPoint": "string",
"CreatedAt": 0,
"UpdatedAt": 0,
"CompletedAt": 0,
"Iteration": {
"Code": 0,
"Name": "string",
"Status": "string"
},
"IssueTypeDetail": {
"Id": 0,
"Name": "string",
"IssueType": "string",
"Description": "string",
"IsSystem": true
}
}
],
"RequestId": "string"
}
}