@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface AuthorizeAccountResponse

    Response from the b2_authorize_account API call. Contains the authorization token and API endpoint URLs needed for subsequent requests.

    interface AuthorizeAccountResponse {
        accountId: AccountId;
        apiInfo: ApiInfo;
        applicationKeyExpirationTimestamp: number | null;
        authorizationToken: AuthToken;
    }
    Index

    Properties

    accountId: AccountId

    The account ID for the authorized account.

    apiInfo: ApiInfo

    API-specific configuration including endpoint URLs and key scope.

    applicationKeyExpirationTimestamp: number | null

    Expiration timestamp of the application key in milliseconds, or null if the key does not expire.

    authorizationToken: AuthToken

    Authorization token to use in subsequent API calls.