Rate this page:
Orgs APIs
GET /admin/v1/orgs
Returns a list of your organizations (based on your API key).
string
Sets the starting point for the page of results to return.
1 2 3 4
curl --request GET \
--url 'https://api.atlassian.com/admin/v1/orgs' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
GET /admin/v1/orgs/{orgId}
Returns information about a single organization by ID
string
ID of the organization to return
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'
Successful operation
Content type | Value |
---|---|
application/json |
Rate this page: