Get Subtask Field List
POST
/issue/list-subtask-fieldRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
issueTypeId
integer <int64>
required
Parent Issue Type ID
projectId
integer <int64>
required
Project ID
Example
{
"issueTypeId": 1,
"projectId": 1
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
controlCode
string
optional
Control Code
fieldCode
string
optional
Field Code
options
array [object {2}]
optional
Field Options
name
string
optional
Option Name
value
object
optional
Option Value
Example
{
"code": "0",
"data": [
{
"controlCode": "xxx",
"fieldCode": "xxx",
"options": [
{
"name": "xxx",
"value": 1
}
]
}
]
}
Last modified: 8 months ago