This request has no parameters.
Successful operation
1
2
3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/coverage' \
--header 'Accept: application/json'
1
2
3
{
"levelByArea": {}
}
object
Successful operation
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": {}
}'
1
2
3
{
"levelByArea": {}
}
This request has no parameters.
Successful operation
1
2
3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/denylist' \
--header 'Accept: application/json'
1
2
3
4
5
{
"actions": [
"<string>"
]
}
array<string>
Successful operation
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>"
]
}'
1
2
3
4
5
{
"actions": [
"<string>"
]
}
array<string>
array<string>
Successful operation
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>"
]
}'
1
2
3
4
5
6
7
8
{
"actionsToAdd": [
"<string>"
],
"actionsToDelete": [
"<string>"
]
}
This request has no parameters.
Successful operation
1
2
3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/retention' \
--header 'Accept: application/json'
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
{
"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
}
}
object
Successful operation
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
}
}'
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
{
"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
}
}
This request has no parameters.
Successful operation
1
2
3
curl --request GET \
--url 'https://your-domain.atlassian.net/configuration/retention/file' \
--header 'Accept: application/json'
1
2
3
{
"maxFileCount": 2154
}
integer
Successful operation
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
}'
1
2
3
{
"maxFileCount": 2154
}
Rate this page: