Interface GetTokenResponse

interface GetTokenResponse {
    access_token: string;
    expires_in: number;
    token_type: string;
}

Properties

access_token: string

The access token you can use to access the API

expires_in: number

The amount of seconds until the access token expires

token_type: string

Currently only Bearer