メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
organizations
/
{id}
/
discovery-domains
すべての組織ディスカバリードメインを取得
curl --request GET \
  --url https://{tenantDomain}/api/v2/organizations/{id}/discovery-domains \
  --header 'Authorization: Bearer <token>'
{
  "domains": [
    {
      "domain": "<string>",
      "id": "<string>",
      "verification_host": "<string>",
      "verification_txt": "<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。

クエリパラメータ

from
string

選択の開始位置を指定する省略可能な Id。

take
integer

ページあたりの結果数。デフォルトは 50 です。

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

レスポンス

組織検出ドメインを正常に取得しました。

domains
object[]
必須
next
string