Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface CreateClientGrantRequestContent

    {
    * client_id: "client_id",
    * audience: "audience",
    * scope: ["scope"]
    * }
    interface CreateClientGrantRequestContent {
        client_id: string;
        audience: string;
        organization_usage?: Management.ClientGrantOrganizationUsageEnum;
        allow_any_organization?: boolean;
        scope: string[];
        subject_type?: Management.ClientGrantSubjectTypeEnum;
        authorization_details_types?: string[];
    }
    Index

    Properties

    client_id: string

    ID of the client.

    audience: string

    The audience (API identifier) of this client grant

    allow_any_organization?: boolean

    If enabled, any organization can be used with this grant. If disabled (default), the grant must be explicitly assigned to the desired organizations.

    scope: string[]

    Scopes allowed for this client grant.

    authorization_details_types?: string[]

    Types of authorization_details allowed for this client grant. Use of this field is subject to the applicable Free Trial terms in Okta’s Master Subscription Agreement.