Function getMlExperiments

  • Retrieves a list of experiments based on provided filter and sort parameters.

    Parameters

    • query: { filter?: string; limit?: number; offset?: number; sort?: EnumSortExperiments }

      an object with query parameters

      • Optionalfilter?: string

        Experiment fields by which you can filter responses within this tenant

        • ownerId ID string - ID of the owner/user that created the experiment
        • spaceId ID string (or empty string for personal space) - ID of the space where the experiment is saved.
        • experimentVersionId UUID string - ID of an experiment version in the experiment
        • modelId UUID string - ID of a model associated with the experiment
        • deploymentId UUID string - ID of a deployment of a model associated with the experiment
      • Optionallimit?: number

        Number of results per page. Default is 32.

      • Optionaloffset?: number

        Number of rows to skip before getting page[size]

      • Optionalsort?: EnumSortExperiments

        Field(s) by which to sort response

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetMlExperimentsHttpResponse>

    getMlExperiments(
    {
    filter: "`filter=ownerId eq UUID and experimentVersionId eq UUID`",
    limit: 10,
    offset: 32
    }
    )

    GetMlExperimentsHttpError