Email domains

Configure and manage email domains for organizations.

Get all organizations by email domain.

get
Authorizations
Path parameters
emailDomainstringrequired

Email domain

Responses
curl -L \
  --url 'https://api.gitbook.com/v1/email-domains/{emailDomain}/orgs' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "organizations": [
    {
      "object": "organization",
      "id": "text",
      "title": "text",
      "createdAt": "2025-04-06T14:18:50.926Z",
      "emailDomains": [
        "text"
      ],
      "hostname": "text",
      "type": "business",
      "useCase": "internalDocs",
      "communityType": "nonProfit",
      "defaultRole": "admin",
      "defaultContent": {
        "type": "site",
        "site": "text"
      },
      "sso": true,
      "ai": true,
      "inviteLinks": true,
      "plan": "free_2024",
      "billing": {
        "interval": "monthly",
        "endDate": "2025-04-06T14:18:50.926Z",
        "hasPaymentFailed": true,
        "isScheduledToCancel": true
      },
      "urls": {
        "location": "https://example.com",
        "app": "https://example.com",
        "logo": "https://example.com"
      },
      "trial": {
        "status": "notapplicable",
        "endDate": "2025-04-06T14:18:50.926Z",
        "decision": "downgrade"
      },
      "customHostname": "text",
      "blocked": {
        "reason": "security"
      },
      "internal_isOnNewTrial": true,
      "internal_billingMigration": {
        "deadline": "2025-04-06T14:18:50.926Z",
        "discountPercent": 1,
        "discountEndDate": "2025-04-06T14:18:50.926Z"
      },
      "permissions": {
        "admin": true,
        "createContent": true
      }
    }
  ]
}

Was this helpful?