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

    Interface GetRefreshTokenResponseContent

    interface GetRefreshTokenResponseContent {
        id?: string;
        user_id?: string;
        created_at?: RefreshTokenDate;
        idle_expires_at?: RefreshTokenDate;
        expires_at?: RefreshTokenDate;
        device?: RefreshTokenDevice;
        client_id?: string;
        session_id?: RefreshTokenSessionId;
        rotating?: boolean;
        resource_servers?: RefreshTokenResourceServer[];
        last_exchanged_at?: RefreshTokenDate;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    id?: string

    The ID of the refresh token

    user_id?: string

    ID of the user which can be used when interacting with other APIs.

    created_at?: RefreshTokenDate
    idle_expires_at?: RefreshTokenDate
    expires_at?: RefreshTokenDate
    client_id?: string

    ID of the client application granted with this refresh token

    rotating?: boolean

    True if the token is a rotating refresh token

    resource_servers?: RefreshTokenResourceServer[]

    A list of the resource server IDs associated to this refresh-token and their granted scopes

    last_exchanged_at?: RefreshTokenDate