Get custom field configurations
GET
/rest/api/3/app/field/{fieldIdOrKey}/context/configuration
Issue custom field configuration (apps)
id
.fieldContextId
.issueId
.projectKeyOrId
and issueTypeId
.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/app/field//context/configuration'
Response Response Example
200 - Success
{
"maxResults": 1000,
"startAt": 0,
"total": 2,
"isLast": true,
"values": [
{
"id": "10000",
"fieldContextId": "10010"
},
{
"id": "10001",
"fieldContextId": "10011",
"configuration": {
"minValue": 0,
"maxValue": 10000
},
"schema": {
"properties": {
"amount": {
"type": "number"
},
"currency": {
"type": "string"
}
},
"required": [
"amount",
"currency"
]
}
}
]
}
Request
Path Params
fieldIdOrKey
stringÂ
required
customfield_10000
.Query Params
id
array[string]
optional
id=10000&id=10001
. Can't be provided with fieldContextId
, issueId
, projectKeyOrId
, or issueTypeId
.fieldContextId
array[string]
optional
fieldContextId=10000&fieldContextId=10001
. Can't be provided with id
, issueId
, projectKeyOrId
, or issueTypeId
.issueId
integerÂ
optional
projectKeyOrId
, or issueTypeId
.projectKeyOrId
stringÂ
optional
issueTypeId
. Can't be provided with issueId
.issueTypeId
stringÂ
optional
projectKeyOrId
. Can't be provided with issueId
.startAt
integerÂ
optional
maxResults
integerÂ
optional
Responses
Modified at 2023-07-13 03:27:27