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

承認

Authorization
string
header
必須

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

パスパラメータ

id
string
必須

ID of the organization.

クエリパラメータ

from
string

Optional Id from which to start selection.

take
integer

Number of results per page. Defaults to 50.

必須範囲: 1 <= x <= 100

レスポンス

Organization discovery domains retrieved successfully.

domains
object[]
必須
next
string