Orgs APIs
Returns a list of your organizations (based on your API key).
string
Successful operation
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/admin/v1/orgs' \
--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
24
25
26
27
28
29
30
31
{
"data": [
{
"id": "<string>",
"type": "orgs",
"attributes": {
"name": "<string>"
},
"relationships": {
"domains": {
"links": {
"related": "<string>"
}
},
"users": {
"links": {
"related": "<string>"
}
}
},
"links": {
"self": "<string>"
}
}
],
"links": {
"self": "<string>",
"prev": "<string>",
"next": "<string>"
}
}
Returns information about a single organization by ID
string
RequiredSuccessful operation
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/admin/v1/orgs/{orgId}' \
--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
24
{
"data": {
"id": "<string>",
"type": "orgs",
"attributes": {
"name": "<string>"
},
"relationships": {
"domains": {
"links": {
"related": "<string>"
}
},
"users": {
"links": {
"related": "<string>"
}
}
},
"links": {
"self": "<string>"
}
}
}
Rate this page: