Method: projects.evaluations.search

Searches evaluations within a project.

HTTP request

GET https://datalabeling.googleapis.com/v1beta1/{parent=projects/*}/evaluations:search

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Evaluation search parent (project ID). Format: "projects/{project_id}"

Authorization requires the following Google IAM permission on the specified resource parent:

  • datalabeling.evaluations.list

Query parameters

Parameters
filter

string

Optional. To search evaluations, you can filter by the following:

To filter by multiple critiera, use the AND operator or the OR operator. The following examples shows a string that filters by several critiera:

"evaluation_job.evaluation_job_id = {evaluation_job_id} AND evaluation_job.model_id = {model_name} AND evaluation_job.evaluation_job_run_time_start = {timestamp_1} AND evaluation_job.evaluation_job_run_time_end = {timestamp_2} AND annotation_spec.display_name = {displayName}"

pageSize

number

Optional. Requested page size. Server may return fewer results than requested. Default value is 100.

pageToken

string

Optional. A token identifying a page of results for the server to return. Typically obtained by the nextPageToken of the response to a previous search request.

If you don't specify this field, the API call requests the first page of the search.

Request body

The request body must be empty.

Response body

If successful, the response body contains data with the following structure:

Results of searching evaluations.

JSON representation
{
  "evaluations": [
    {
      object (Evaluation)
    }
  ],
  "nextPageToken": string
}
Fields
evaluations[]

object (Evaluation)

The list of evaluations matching the search.

nextPageToken

string

A token to retrieve next page of results.

Authorization Scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.