interface ApiClientDraft {
    accessTokenValiditySeconds?: number;
    deleteDaysAfterCreation?: number;
    name: string;
    refreshTokenValiditySeconds?: number;
    scope: string;
}

Properties

accessTokenValiditySeconds?: number

Expiration time in seconds for each access token obtained by the APIClient. If not set the default value applies.

deleteDaysAfterCreation?: number

If set, the Client will be deleted after the specified amount of days.

name: string

Name of the APIClient.

refreshTokenValiditySeconds?: number

Inactivity expiration time in seconds for each refresh token obtained by the APIClient. The expiration time for refresh tokens is restarted each time the token is used. If not set the default value applies.

scope: string

Whitespace-separated list of OAuth scopes that can be used when obtaining an access token.