Rate this page:
GET /configuration/coverage
1 2 3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/coverage' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
PUT /configuration/coverage
1 2 3 4 5 6 7
curl --request PUT \
--url 'https://your-domain.atlassian.net/configuration/coverage' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"levelByArea": {}
}'
Successful operation
Content type | Value |
---|---|
application/json |
GET /configuration/denylist
1 2 3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/denylist' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
PUT /configuration/denylist
Array<string>
1 2 3 4 5 6 7 8 9
curl --request PUT \
--url 'https://your-domain.atlassian.net/configuration/denylist' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"actions": [
"<string>"
]
}'
Successful operation
Content type | Value |
---|---|
application/json |
POST /configuration/denylist
Array<string>
Array<string>
1 2 3 4 5 6 7 8 9 10 11 12
curl --request POST \
--url 'https://your-domain.atlassian.net/configuration/denylist' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"actionsToAdd": [
"<string>"
],
"actionsToDelete": [
"<string>"
]
}'
Successful operation
Content type | Value |
---|---|
application/json |
GET /configuration/retention
1 2 3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/retention' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
PUT /configuration/retention
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
curl --request PUT \
--url 'https://your-domain.atlassian.net/configuration/retention' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"period": {
"chronology": {
"calendarType": "<string>",
"id": "<string>"
},
"days": 2154,
"months": 2154,
"negative": true,
"units": [
{
"dateBased": true,
"duration": {
"nano": 2154,
"negative": true,
"seconds": 2154,
"zero": true
},
"durationEstimated": true,
"timeBased": true
}
],
"years": 2154,
"zero": true
}
}'
Successful operation
Content type | Value |
---|---|
application/json |
GET /configuration/retention/file
1 2 3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/retention/file' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
PUT /configuration/retention/file
integer
int32
1 2 3 4 5 6 7
curl --request PUT \
--url 'https://your-domain.atlassian.net/configuration/retention/file' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"maxFileCount": 2154
}'
Successful operation
Content type | Value |
---|---|
application/json |
Rate this page: