Argo CD API Client
    Preparing search index...

    Interface ArgoCdAccountTokenCreated

    Response returned when a new account token is created.

    interface ArgoCdAccountTokenCreated {
        expiresAt?: number;
        id?: string;
        issuedAt?: number;
        token?: string;
    }
    Index

    Properties

    expiresAt?: number

    Unix timestamp when the token expires (absent when no expiry).

    id?: string

    Token identifier.

    issuedAt?: number

    Unix timestamp when the token was issued.

    token?: string

    The JWT string for the new token.