{ "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"} } }