Domain APIs
Returns a list of domains in an organization one page at a time.
string
Requiredstring
Successful operation
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/admin/v1/orgs/{orgId}/domains' \
--header 'Authorization: Bearer <access_token>' \
--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
{
"data": [
{
"id": "<string>",
"type": "domains",
"attributes": {
"name": "<string>",
"claim": {
"type": "http",
"status": "verified"
}
},
"links": {
"self": "<string>"
}
}
],
"links": {
"self": "<string>",
"prev": "<string>",
"next": "<string>"
}
}
Returns information about a single verified domain by ID.
string
Requiredstring
RequiredSuccessful operation
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/admin/v1/orgs/{orgId}/domains/{domainId}' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"data": {
"id": "<string>",
"type": "domains",
"attributes": {
"name": "<string>",
"claim": {
"type": "http",
"status": "verified"
}
},
"links": {
"self": "<string>"
}
}
}
Rate this page: