The name of the parent resource to search for cases under.
Query parameters
Parameters
query
string
An expression used to filter cases.
Expressions use the following fields separated by AND and specified with =:
organization: An organization name in the form organizations/<organizationId>.
project: A project name in the form projects/<projectId>.
state: Can be OPEN or CLOSED.
priority: Can be P0, P1, P2, P3, or P4. You can specify multiple values for priority using the OR operator. For example, priority=P1 OR priority=P2.
creator.email: The email address of the case creator.
You must specify either organization or project.
To search across displayName, description, and comments, use a global restriction with no keyword or operator. For example, "my search".
To search only cases updated after a certain date, use updateTime restricted with that particular date, time, and timezone in ISO datetime format. For example, updateTime>"2020-01-01T00:00:00-05:00". updateTime only supports the greater than operator (>).
Examples:
organization="organizations/123456789"
project="projects/my-project-id"
project="projects/123456789"
organization="organizations/123456789" AND state=CLOSED
project="projects/my-project-id" AND creator.email="tester@example.com"
project="projects/my-project-id" AND (priority=P0 OR priority=P1)
pageSize
integer
The maximum number of cases fetched with each request. The default page size is 10.
pageToken
string
A token identifying the page of results to return. If unspecified, the first page is retrieved.
Request body
The request body must be empty.
Response body
The response message for the cases.search endpoint.
If successful, the response body contains data with the following structure:
The list of cases associated with the parent after any filters have been applied.
nextPageToken
string
A token to retrieve the next page of results. Set this in the pageToken field of subsequent cases.search requests. If unspecified, there are no more results to retrieve.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-30 UTC."],[],[],null,["# Method: cases.search\n\nSearch for cases using a query.\n\nEXAMPLES:\n\ncURL: \n\n parent=\"projects/some-project\"\n curl \\\n --header \"Authorization: Bearer $(gcloud auth print-access-token)\" \\\n \"https://cloudsupport.googleapis.com/v2/$parent/cases:search\"\n\nPython: \n\n import googleapiclient.discovery\n\n apiVersion = \"v2\"\n supportApiService = googleapiclient.discovery.build(\n serviceName=\"cloudsupport\",\n version=apiVersion,\n discoveryServiceUrl=f\"https://cloudsupport.googleapis.com/$discovery/rest?version={apiVersion}\",\n )\n request = supportApiService.cases().search(\n parent=\"projects/some-project\", query=\"state=OPEN\"\n )\n print(request.execute())\n\n### HTTP request\n\n`GET https://cloudsupport.googleapis.com/v2/{parent=*/*}/cases:search`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n### Query parameters\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nThe response message for the cases.search endpoint.\n\nIf successful, the response body contains data with the following structure:\n\n### Authorization scopes\n\nRequires one of the following OAuth scopes:\n\n- `https://www.googleapis.com/auth/cloudsupport`\n- `https://www.googleapis.com/auth/cloud-platform`\n\nFor more information, see the [Authentication Overview](/docs/authentication#authorization-gcp)."]]