Function getAutomationConnectors

  • Retrieves a list of automation connectors.

    Parameters

    • query: {
          cursor?: string;
          filter?: string;
          limit?: number;
          sort?: "id" | "name" | "-name" | "+name" | "+id" | "-id";
      }

      an object with query parameters

      • Optionalcursor?: string

        Pagination cursor returned from a previous request.

      • Optionalfilter?: string

        Filters the result based on the specified criteria: name.

      • Optionallimit?: number

        The number of automation connectors to retrieve.

      • Optionalsort?: "id" | "name" | "-name" | "+name" | "+id" | "-id"

        The field to sort by, with +- prefix indicating sort order. (?sort=-name => sort on the name field using descending order).

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetAutomationConnectorsHttpResponse>

    GetAutomationConnectorsHttpError