• Orgs
  • Users
  • Groups
  • Domains
  • Events
  • Policies
  • Directory
  • Workspaces
Cloud
Organizations REST API / Reference / REST API

Orgs

Postman Collection
OpenAPI
GET

Get organizations

Returns a list of your organizations (based on your API key).

Request

Query parameters

cursor

string

Responses

Successful operation

application/json

OrgPage
GET/v1/orgs
1 2 3 4 curl --request GET \ --url 'https://api.atlassian.com/admin/v1/orgs' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json'
200Response
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>" } }
GET

Get an organization by ID

Returns information about a single organization by ID

Request

Path parameters

orgId

string

Required

Responses

Successful operation

application/json

Org
GET/v1/orgs/{orgId}
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'
200Response
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: