Function getAutomationConnections

  • Retrieves a list of automation connections

    Parameters

    • query: {
          filter?: string;
          limit?: number;
          listAll?: boolean;
          sort?:
              | "id"
              | "name"
              | "-name"
              | "+name"
              | "+createdAt"
              | "-createdAt"
              | "+updatedAt"
              | "-updatedAt"
              | "createdAt"
              | "updatedAt"
              | "+id"
              | "-id";
      }

      an object with query parameters

      • Optionalfilter?: string

        Filters the result based on the specified criteria: name, connectorId, ownerId, or spaceId.

      • Optionallimit?: number

        The number of automation connections to retrieve.

      • OptionallistAll?: boolean

        When true, list all connections. Restricted to tenant admins and analytics admins.

      • Optionalsort?:
            | "id"
            | "name"
            | "-name"
            | "+name"
            | "+createdAt"
            | "-createdAt"
            | "+updatedAt"
            | "-updatedAt"
            | "createdAt"
            | "updatedAt"
            | "+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<GetAutomationConnectionsHttpResponse>

    GetAutomationConnectionsHttpError