Hierarchy

  • IntegrationEvents

Properties

impersonating: boolean = false

Methods

  • Delete an integration event Check out the docs for more info

    Parameters

    • integrationEventID: string

      ID of the integration event.

    • requestOptions: RequestOptions = {}

    Returns Promise<void>

  • List integration events Check out the docs for more info

    Type Parameters

    Parameters

    • listOptions: {
          filters?: Filters;
          page?: number;
          pageSize?: number;
          search?: string;
          searchOn?: ("ID" | "Name" | "EventType")[];
          sortBy?: ("ID" | "Name" | "EventType" | "!ID" | "!Name" | "!EventType")[];
      } = {}
      • Optional filters?: Filters

        An object or dictionary representing key/value pairs to apply as filters. Valid keys are top-level properties of the returned model or 'xp.???'

      • Optional page?: number

        Page of results to return. When paginating through many items (> page 30), we recommend the "Last ID" method, as outlined in the Advanced Querying documentation.

      • Optional pageSize?: number

        Number of results to return per page.

      • Optional search?: string

        Word or phrase to search for.

      • Optional searchOn?: ("ID" | "Name" | "EventType")[]

        Comma-delimited list of fields to search on.

      • Optional sortBy?: ("ID" | "Name" | "EventType" | "!ID" | "!Name" | "!EventType")[]

        Comma-delimited list of fields to sort by.

    • requestOptions: RequestOptions = {}

    Returns Promise<RequiredObjectDeep<ListPage<TIntegrationEvent>>>

Generated using TypeDoc