My Organization API
TypeScript
import { MyOrganizationClient } from "github.com/auth0/myorganization-js"; async function main() { const client = new MyOrganizationClient({ token: "<token>", }); await client.organization.domains.identityProviders.get("domain_id"); } main();
{ "identity_providers": [ { "id": "con_2CZPv6IY0gWzDaQJ", "display_name": "Acme Engineering", "name": "acme-engineering" }, { "id": "con_2CZPv6IY0gWzDaQG", "display_name": "Acme Engineering 2", "name": "acme-engineering-2" } ] }
Retrieve the list of identity providers that have a specific organization domain alias.
The access token received from the authorization server in the OAuth 2.0 flow.
Organization domain identifier.
^ord_[A-Za-z0-9]{22}$
List identity providers for an organization domain.
表示 子属性
このページは役に立ちましたか?