Get Issue Type List
GET
/issue/type-listRequest
Query Params
projectId
integer <int64>
required
Project ID
Example:
1
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
string
optional
Issue Type Code
name
string
optional
Issue Type Name
id
integer <int64>
optional
Issue Type ID
workflowId
integer <int64>
optional
Workflow ID
Example
{
"code": "0",
"data": [
{
"code": "bug",
"name": "xxx",
"id": 1,
"workflowId": 1
}
]
}
Last modified: 6 months ago