Skip to content

Commit 9538fe0

Browse files
committed
add card + section for myorg api to api reference page
1 parent c21969e commit 9538fe0

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

main/docs/api.mdx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ mode: wide
44
description: Auth0 exposes the following APIs for developers to consume in their applications.
55
---
66

7-
import {AuthenticationApiSection, ManagementApiSection, MyAccountApiSection} from "/snippets/api.jsx";
7+
import {AuthenticationApiSection, ManagementApiSection, MyAccountApiSection, MyOrganizationApiSection} from "/snippets/api.jsx";
88

99
<div class="api_page_container">
1010

@@ -31,6 +31,14 @@ import {AuthenticationApiSection, ManagementApiSection, MyAccountApiSection} fro
3131

3232
<MyAccountApiSection/>
3333

34+
<Card
35+
title="My Organization API"
36+
href="https://auth0.com/docs/api/myorganization"
37+
arrow
38+
/>
39+
40+
<MyOrganizationApiSection/>
41+
3442
---
3543

3644
## Pagination

main/snippets/api.jsx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,30 @@ export const MyAccountApiSection = () => {
9494
</div>
9595
);
9696
};
97+
98+
export const MyOrganizationApiSection = () => {
99+
return (
100+
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 leading-relaxed">
101+
{/* Left column */}
102+
<div>
103+
<p>
104+
The Auth0 My Organization API provides a secure, Organization-scoped interface that allows your
105+
business customers to manage their own Organizations within your Auth0 tenant. This API serves
106+
as the technical backbone for embedded delegated administration and API-first integrations.
107+
For more information, see more documentation <a href="/docs/manage-users/my-organization-api">here</a>.
108+
</p>
109+
</div>
110+
111+
{/* Right column */}
112+
<div>
113+
<p>Some example tasks include:</p>
114+
<ul className="space-y-2 !mt-0">
115+
<li>Auth0 Organization details (name, branding, display name)</li>
116+
<li>Organization-specific configuration, ownership, and relationships</li>
117+
<li>Identity Providers (IdPs) and SCIM provisioning</li>
118+
<li>Domains and Home Realm Discovery (HRD) setup</li>
119+
</ul>
120+
</div>
121+
</div>
122+
);
123+
}

0 commit comments

Comments
 (0)