Skip to main content
GET
/
config
TypeScript
import { MyOrganizationClient } from "github.com/auth0/myorganization-js";

async function main() {
    const client = new MyOrganizationClient({
        token: "<token>",
    });
    await client.organization.configuration.get();
}
main();
{
  "allowed_strategies": [
    "adfs",
    "pingfederate"
  ],
  "connection_deletion_behavior": "allow"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

Configuration successfully retrieved.

allowed_strategies
enum<string>[]

Array of supported strategies

The type of the identity provider

Available options:
adfs,
google-apps,
oidc,
okta,
pingfederate,
samlp,
waad
connection_deletion_behavior
enum<string>

Specifies whether deletion of a connection is always allowed, or only when the connection has no associated users

Available options:
allow,
allow_if_empty