@webitel/api-services
    Preparing search index...
    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          createEmailProfile: (
              engineCreateEmailProfileRequest: EngineCreateEmailProfileRequest,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineEmailProfile, any, {}>>;
          deleteEmailProfile: (
              id: string,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineEmailProfile, any, {}>>;
          loginEmailProfile: (
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineLoginEmailProfileResponse, any, {}>>;
          logoutEmailProfile: (
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineLogoutEmailProfileResponse, any, {}>>;
          patchEmailProfile: (
              id: string,
              engineEmailProfileServicePatchEmailProfileBody: EngineEmailProfileServicePatchEmailProfileBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineEmailProfile, any, {}>>;
          readEmailProfile: (
              id: string,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineEmailProfile, any, {}>>;
          searchEmailProfile: (
              params?: SearchEmailProfileParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListEmailProfile, any, {}>>;
          testEmailProfile: (
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineTestEmailProfileResponse, any, {}>>;
          updateEmailProfile: (
              id: string,
              engineEmailProfileServiceUpdateEmailProfileBody: EngineEmailProfileServiceUpdateEmailProfileBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineEmailProfile, any, {}>>;
      }