Skip to main content

Search Projects

Search for projects that the caller has both resourcemanager.projects.get permission on, and also satisfy the specified query. This method returns projects in an unspecified order. This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project may not be reflected in the results. To retrieve the latest state of a project, use the GetProject method.

External Documentation

To learn more, visit the GCP documentation.

Basic Parameters

ParameterDescription
QueryOptional. A query string for searching for projects that the caller has resourcemanager.projects.get permission to. If multiple fields are included in the query, then it will return results that match any of the fields. Some eligible fields are: ```
Return All PagesAutomatically fetch all resources, page by page.

Advanced Parameters

ParameterDescription
Page SizeOptional. The maximum number of projects to return in the response. The server can return fewer projects than requested. If unspecified, server picks an appropriate default.

Example Output

{
"projects": [
{
"name": "projects/123456789101",
"parent": "organizations/123456789101",
"projectId": "project-123456",
"state": "ACTIVE",
"displayName": "My Project",
"createTime": "2021-11-11T11:06:07.890Z",
"etag": "flE+tNWoOaHzqVjXSjWSww=="
}
]
}

Workflow Library Example

Search Projects with Gcp and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop