CalOohPay API Documentation - v2.1.0
    Preparing search index...

    Interface Environment

    Environment configuration for API authentication.

    Stores validated environment variables needed for the application to function, primarily the PagerDuty API authentication token.

    const env: Environment = {
    API_TOKEN: 'your-pagerduty-api-token'
    };
    interface Environment {
        API_TOKEN: string;
    }
    Index

    Properties

    Properties

    API_TOKEN: string

    PagerDuty API authentication token. Required for all API calls to PagerDuty. Should be a valid PagerDuty REST API token with appropriate permissions.

    SECURITY NOTE: Never log this value in clear text. Use the automatic masking provided by ConsoleLogger or sanitizeError() before logging.