メインコンテンツへスキップ
GET
/
organizations
/
{id}
/
discovery-domains
/
{discovery_domain_id}
Retrieve an organization discovery domain by ID
curl --request GET \
  --url https://{tenantDomain}/api/v2/organizations/{id}/discovery-domains/{discovery_domain_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "domain": "<string>",
  "status": "pending",
  "verification_txt": "<string>",
  "verification_host": "<string>",
  "use_for_organization_discovery": true
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string
必須

ID of the organization.

discovery_domain_id
string
必須

ID of the discovery domain.

レスポンス

Organization discovery domain successfully retrieved.

id
string<organization-discovery-domain-id>
必須

Organization discovery domain identifier.

domain
string
必須

The domain name to associate with the organization e.g. acme.com.

Required string length: 3 - 255
Pattern: ^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z0-9])$
status
enum<string>
必須

The verification status of the discovery domain.

利用可能なオプション:
pending,
verified
verification_txt
string
必須

A unique token generated for the discovery domain. This must be placed in a DNS TXT record at the location specified by the verification_host field to prove domain ownership.

verification_host
string
必須

The full domain where the TXT record should be added.

use_for_organization_discovery
boolean

Indicates whether this domain should be used for organization discovery.