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

    Interface TokenExchangeGrantRequest

    interface TokenExchangeGrantRequest {
        client_id?: string;
        subject_token: string;
        audience?: string;
        scope?: string;
        user_profile: string;
    }
    Index

    Properties

    client_id?: string

    Specify this to override the parent class's clientId

    subject_token: string

    Externally-issued identity artifact, representing the user.

    audience?: string

    The unique identifier of the target API you want to access.

    scope?: string

    String value of the different scopes the application is requesting. Multiple scopes are separated with whitespace.

    user_profile: string

    Optional element used for native iOS interactions for which profile updates can occur. Expected parameter value will be JSON in the form of: { name: { firstName: 'John', lastName: 'Smith }}