• Retrieves a list of automation connections the requesting user has access to.

    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
      • OptionallistAll?: boolean
      • Optionalsort?:
            | "id"
            | "name"
            | "-name"
            | "+name"
            | "+createdAt"
            | "-createdAt"
            | "+updatedAt"
            | "-updatedAt"
            | "createdAt"
            | "updatedAt"
            | "+id"
            | "-id"
    • Optionaloptions: ApiCallOptions

    Returns Promise<automationConnections.GetAutomationConnectionsHttpResponse>

    GetAutomationConnectionsHttpError