Interface LoginCredentials

Credentials for logging in to the contrail platform. Either provide (orgSlug and apiKey) or (orgSlug, email, and password).

interface LoginCredentials {
    apiKey?: string;
    email?: string;
    orgSlug: string;
    password?: string;
}

Properties

apiKey?: string

The app API key. Can be retrieved using the CLI command contrail app getApiKey. Looks like app:qwerty123.

email?: string
orgSlug: string
password?: string

Generated using TypeDoc