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

    Function getManagers

    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          deleteManager: (
              contactId: string,
              etag: string,
              params?: DeleteManagerParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManager, any, {}>>;
          deleteManagers: (
              contactId: string,
              params: DeleteManagersParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManager[], any, {}>>;
          listManagers: (
              contactId: string,
              params?: ListManagersParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManagerList, any, {}>>;
          locateManager: (
              contactId: string,
              etag: string,
              params?: LocateManagerParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManager, any, {}>>;
          mergeManagers: (
              contactId: string,
              contactsInputManager: ContactsInputManager[],
              params?: MergeManagersParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManagerList, any, {}>>;
          resetManagers: (
              contactId: string,
              contactsInputManager: ContactsInputManager[],
              params?: ResetManagersParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManagerList, any, {}>>;
          updateManager: (
              contactId: string,
              etag: string,
              updateManagerBody: UpdateManagerBody,
              params?: UpdateManagerParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManagerList, any, {}>>;
          updateManager2: (
              contactId: string,
              etag: string,
              updateManager2Body: UpdateManager2Body,
              params?: UpdateManager2Params,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsManagerList, any, {}>>;
      }