Auth0 · Example Payload

Auth0 Organization Create Example

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Auth0 Organization Create Example is an example object payload from Auth0, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://your-tenant.auth0.com/api/v2/organizations",
    "headers": {
      "Authorization": "Bearer {AUTH0_MGMT_TOKEN}",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "acme",
      "display_name": "Acme Corp",
      "branding": {
        "logo_url": "https://example.com/acme-logo.png",
        "colors": {"primary": "#0050ff", "page_background": "#ffffff"}
      },
      "metadata": {"plan": "enterprise"}
    }
  },
  "response": {
    "id": "org_abc123",
    "name": "acme",
    "display_name": "Acme Corp",
    "branding": {"logo_url": "https://example.com/acme-logo.png"}
  }
}