Passer au contenu principal
GET
/
details
Récupérer les détails de l’organisation
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"
}

Autorisations

Authorization
string
header
requis

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

Réponse

Les détails de l’organisation ont été récupérés avec succès.

branding
object

Theme définit le style des pages de connexion.

display_name
string

Nom convivial de cette organisation.

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

Identifiant de l’organisation.

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

Le nom de cette organisation.

Required string length: 1 - 50