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

    Interface RevokeRefreshTokensRequestContent

    {}
    
    interface RevokeRefreshTokensRequestContent {
        ids?: string[];
        user_id?: string;
        client_id?: string;
        audience?: string;
    }
    Index

    Properties

    ids?: string[]

    Array of refresh token IDs to revoke. Limited to 100 at a time.

    user_id?: string

    Revoke all refresh tokens for this user.

    client_id?: string

    Revoke all refresh tokens for this client.

    audience?: string

    Resource server identifier (audience) to scope the revocation. Must be used with both user_id and client_id.