(Preview) List experiments

post

/20260430/aiDataPlatforms/{aiDataPlatformId}/workspaces/{workspaceKey}/mlops/api/2.0/mlflow/experiments/search

(Preview) Returns a list of experiments with the given details.

Request

Path Parameters
Header Parameters
  • The DH User Principal Header .
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Body ()
Details of experiments to fetch.
Root Schema : ListExperimentsDetails
Type: object
Details of experiments to fetch.
Show Source
  • A filter expression over experiment attributes and tags that allows returning a subset of experiments. The syntax is a subset of SQL that supports ANDing together binary operations between an attribute or tag and a constant. Example: name LIKE 'test-%' AND tags.key = 'value' Columns with special characters (hyphen, space, period, etc.) can be selected using double quotes or backticks. Example: tags."extra-key" = 'value' or tags.`extra-key` = 'value' Supported operators are =, !=, LIKE, and ILIKE.
  • Maximum number of experiments desired. Servers may select a default. All servers are guaranteed to support a max_results threshold of at least 1,000 but may support more. Callers are encouraged to pass max_results explicitly and leverage page_token to iterate.
  • order_by
    List of columns for ordering search results, which can include experiment name and ID with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by experiment ID DESC.
  • Token indicating the page of experiments to fetch.
  • Allowed Values: [ "ACTIVE_ONLY", "DELETED_ONLY", "ALL" ]
    Qualifier for type of experiments to be returned. If unspecified, returns only active experiments.
Nested Schema : order_by
Type: array
List of columns for ordering search results, which can include experiment name and ID with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by experiment ID DESC.
Show Source
Back to Top

Response

Supported Media Types

200 Response

Successful operation. List of experiments is retrieved.
Headers
  • For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items.
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : ExperimentCollection
Type: object
Result of listing experiments.
Show Source
Nested Schema : experiments
Type: array
Experiments that match the search criteria.
Show Source
Nested Schema : Experiment
Type: object
Details of an MLflow experiment.
Show Source
Nested Schema : tags
Type: array
List of tags set on the experiment.
Show Source
Nested Schema : ExperimentTag
Type: object
A tag associated with an experiment.
Show Source

400 Response

Bad Request (invalid query parameters, malformed headers, and so on).
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

401 Response

Unauthorized (missing or expired credentials, and so on).
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

404 Response

Not Found. The requested resource was not found.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

429 Response

Too Many Requests. Too many requests sent to the server in a short period.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

500 Response

Internal Server Error. The server encountered an unexpected condition preventing fulfilment of the request.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

Default Response

Unknown Error. Error is not recognized by the system.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source
Back to Top