メインコンテンツへスキップ
GET
/
details
組織の詳細を取得する
curl --request GET \
  --url https://{tenantDomain}/my-org/v1/details \
  --header 'Authorization: Bearer <token>'
{
  "branding": {
    "colors": {
      "page_background": "#FFFFFF",
      "primary": "#000000"
    },
    "logo_url": "https://example.com/logo.png"
  },
  "display_name": "Test Organization",
  "id": "org_zW1UHutvkVWSWdCC",
  "name": "testorg"
}

承認

Authorization
string
header
必須

The access token received from the authorization server in the OAuth 2.0 flow.

レスポンス

組織の詳細が正常に取得されました。

branding
object

テーマは、ログインページのスタイルを定義します。

display_name
string

この組織のフレンドリ名。

Required string length: 1 - 255
id
string
read-only

組織の識別子。

Pattern: ^org_[A-Za-z0-9]{16}$
name
string

この組織の名前。

Required string length: 1 - 50