ApiKeyApi - axios parameter creator

  • Parameters

    Returns {
        createKey: (
            app: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        getKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
        revokeKey: (
            key: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • createKey: (app: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • getKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • revokeKey: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>