pl-api
    Preparing search index...

    Function antennasCategory

    • Parameters

      Returns {
          addAntennaAccounts: (
              antennaId: string,
              accountIds: string[],
          ) => Promise<EmptyObject>;
          addAntennaDomains: (
              antennaId: string,
              domains: string[],
          ) => Promise<EmptyObject>;
          addAntennaExcludedAccounts: (
              antennaId: string,
              accountIds: string[],
          ) => Promise<EmptyObject>;
          addAntennaExcludedDomains: (
              antennaId: string,
              domains: string[],
          ) => Promise<EmptyObject>;
          addAntennaExcludedKeywords: (
              antennaId: string,
              keywords: string[],
          ) => Promise<EmptyObject>;
          addAntennaExcludedTags: (
              antennaId: string,
              tags: string[],
          ) => Promise<EmptyObject>;
          addAntennaKeywords: (
              antennaId: string,
              keywords: string[],
          ) => Promise<EmptyObject>;
          addAntennaTags: (antennaId: string, tags: string[]) => Promise<EmptyObject>;
          createAntenna: (params: CreateAntennaParams) => Promise<Antenna>;
          deleteAntenna: (antennaId: string) => Promise<EmptyObject>;
          fetchAntennas: () => Promise<Antenna[]>;
          getAntennaAccounts: (
              antennaId: string,
          ) => Promise<PaginatedResponse<Account, true>>;
          getAntennaDomains: (
              antennaId: string,
          ) => Promise<{ domains: string[]; exclude_domains: string[] }>;
          getAntennaExcludedAccounts: (
              antennaId: string,
          ) => Promise<PaginatedResponse<Account, true>>;
          getAntennaKeywords: (
              antennaId: string,
          ) => Promise<{ exclude_keywords: string[]; keywords: string[] }>;
          getAntennas: (antennaId: string) => Promise<Antenna>;
          getAntennaTags: (
              antennaId: string,
          ) => Promise<{ exclude_tags: string[]; tags: string[] }>;
          removeAntennaAccounts: (
              antennaId: string,
              accountIds: string[],
          ) => Promise<EmptyObject>;
          removeAntennaDomains: (
              antennaId: string,
              domains: string[],
          ) => Promise<EmptyObject>;
          removeAntennaExcludedAccounts: (
              antennaId: string,
              accountIds: string[],
          ) => Promise<EmptyObject>;
          removeAntennaExcludedDomains: (
              antennaId: string,
              domains: string[],
          ) => Promise<EmptyObject>;
          removeAntennaExcludedKeywords: (
              antennaId: string,
              keywords: string[],
          ) => Promise<EmptyObject>;
          removeAntennaExcludedTags: (
              antennaId: string,
              tags: string[],
          ) => Promise<EmptyObject>;
          removeAntennaKeywords: (
              antennaId: string,
              keywords: string[],
          ) => Promise<EmptyObject>;
          removeAntennaTags: (
              antennaId: string,
              tags: string[],
          ) => Promise<EmptyObject>;
          updateAntenna: (
              antennaId: string,
              params: UpdateAntennaParams,
          ) => Promise<Antenna>;
      }

      • addAntennaAccounts: (antennaId: string, accountIds: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaDomains: (antennaId: string, domains: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaExcludedAccounts: (antennaId: string, accountIds: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaExcludedDomains: (antennaId: string, domains: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaExcludedKeywords: (antennaId: string, keywords: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaExcludedTags: (antennaId: string, tags: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaKeywords: (antennaId: string, keywords: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • addAntennaTags: (antennaId: string, tags: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • createAntenna: (params: CreateAntennaParams) => Promise<Antenna>

        Requires featuresFeatures.antennas.

      • deleteAntenna: (antennaId: string) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • fetchAntennas: () => Promise<Antenna[]>

        Requires featuresFeatures.antennas.

      • getAntennaAccounts: (antennaId: string) => Promise<PaginatedResponse<Account, true>>

        Requires featuresFeatures.antennas.

      • getAntennaDomains: (antennaId: string) => Promise<{ domains: string[]; exclude_domains: string[] }>

        Requires featuresFeatures.antennas.

      • getAntennaExcludedAccounts: (antennaId: string) => Promise<PaginatedResponse<Account, true>>

        Requires featuresFeatures.antennas.

      • getAntennaKeywords: (
            antennaId: string,
        ) => Promise<{ exclude_keywords: string[]; keywords: string[] }>

        Requires featuresFeatures.antennas.

      • getAntennas: (antennaId: string) => Promise<Antenna>

        Requires featuresFeatures.antennas.

      • getAntennaTags: (antennaId: string) => Promise<{ exclude_tags: string[]; tags: string[] }>

        Requires featuresFeatures.antennas.

      • removeAntennaAccounts: (antennaId: string, accountIds: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaDomains: (antennaId: string, domains: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaExcludedAccounts: (antennaId: string, accountIds: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaExcludedDomains: (antennaId: string, domains: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaExcludedKeywords: (antennaId: string, keywords: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaExcludedTags: (antennaId: string, tags: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaKeywords: (antennaId: string, keywords: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • removeAntennaTags: (antennaId: string, tags: string[]) => Promise<EmptyObject>

        Requires featuresFeatures.antennas.

      • updateAntenna: (antennaId: string, params: UpdateAntennaParams) => Promise<Antenna>

        Requires featuresFeatures.antennas.