Documentation
    Preparing search index...

    Represents the options for the RestClient class.

    accessKey - the access key created via the developer portal

    secretKey - the secret key

    host - the api to use. Use https://api-e.ecoflow.com for european accounts, use https://api-a.ecoflow.com in the US.

    type RestClientOptions = {
        accessKey: string;
        host:
            | "https://api-e.ecoflow.com"
            | "https://api-a.ecoflow.com"
            | `${string}`;
        secretKey: string;
    }
    Index

    Properties

    accessKey: string
    host: "https://api-e.ecoflow.com" | "https://api-a.ecoflow.com" | `${string}`
    secretKey: string