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

    Function getLabels

    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          deleteLabels: (
              contactId: string,
              params: DeleteLabelsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsLabelList, any, {}>>;
          getLabels: (
              params?: GetLabelsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsLabelTags, any, {}>>;
          listLabels: (
              contactId: string,
              params?: ListLabelsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsLabelList, any, {}>>;
          mergeLabels: (
              contactId: string,
              contactsInputLabel: ContactsInputLabel[],
              params?: MergeLabelsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsLabelList, any, {}>>;
          resetLabels: (
              contactId: string,
              contactsInputLabel: ContactsInputLabel[],
              params?: ResetLabelsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsLabelList, any, {}>>;
      }