Method: projects.locations.jobs.executions.list

Lists Executions from a Job. Results are sorted by creation time, descending.

HTTP request

GET https://run.googleapis.com/v2/{parent}/executions

Path parameters

Parameters
parent

string

Required. The Execution from which the Executions should be listed. To list all Executions across Jobs, use "-" instead of Job name. Format: projects/{project}/locations/{location}/jobs/{job}, where {project} can be project id or number. It takes the form projects/{project}/locations/{location}/jobs/{job}.

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

  • run.executions.list

Query parameters

Parameters
pageSize

integer

Maximum number of Executions to return in this call.

pageToken

string

A page token received from a previous call to executions.list. All other parameters must match.

showDeleted

boolean

If true, returns deleted (but unexpired) resources along with active ones.

Request body

The request body must be empty.

Response body

Response message containing a list of Executions.

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

JSON representation
{
 "executions": [
 {
 object (Execution )
 }
 ],
 "nextPageToken": string
}
Fields
executions[]

object (Execution )

The resulting list of Executions.

nextPageToken

string

A token indicating there are more items than pageSize. Use it in the next executions.list request to continue.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年07月09日 UTC.