@getalby/sdk
    Preparing search index...

    Interface GetTokenResponse

    interface GetTokenResponse {
        access_token?: string;
        expires_in?: number;
        refresh_token?: string;
        scope?: string;
        token_type?: string;
    }
    Index

    Properties

    access_token?: string

    Access tokens are the token that applications use to make API requests on behalf of a user.

    expires_in?: number
    refresh_token?: string

    Allows an application to obtain a new access token without prompting the user via the refresh token flow.

    scope?: string

    Comma-separated list of scopes for the token

    token_type?: string