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

Domains

Postman Collection
OpenAPI
GET

Get domains in an organization

Returns a list of domains in an organization one page at a time.

Request

Path parameters

orgId

string

Required

Query parameters

cursor

string

Responses

Successful operation

application/json

DomainPage
GET/v1/orgs/{orgId}/domains
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'
200Response
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>" } }
GET

Get domain by ID

Returns information about a single verified domain by ID.

Request

Path parameters

orgId

string

Required
domainId

string

Required

Responses

Successful operation

application/json

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