Interface CheckmarxAuthResponse

Response returned by the Checkmarx authentication endpoint.

Use token_type and access_token together to build the Authorization header: ${token_type} ${access_token}

interface CheckmarxAuthResponse {
    access_token: string;
    token_type: string;
}

Properties

access_token: string

The access token to use for subsequent API calls

token_type: string

Token type, typically 'Bearer'