- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Returns a list of functions that belong to the requested project.
HTTP request
GET https://cloudfunctions.googleapis.com/v1/{parent}/functions
Path parameters
parent
string
The project and location from which the function should be listed, specified in the format projects/*/locations/*
If you want to list functions in all locations, use "-" in place of a location. When listing functions in all locations, if one or more location(s) are unreachable, the response will contain functions from all reachable locations along with the names of any unreachable locations. It takes the form projects/{project}/locations/{location}
.
Authorization requires the following IAM
permission on the specified resource parent
:
-
cloudfunctions.functions.list
Query parameters
| Parameters | |
|---|---|
pageSize
|
Maximum number of functions to return per call. |
pageToken
|
The value returned by the last |
Request body
The request body must be empty.
Response body
Response for the functions.list
method.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"functions"
:
[
{
object (
|
| Fields | |
|---|---|
functions[]
|
The functions that match the request. |
nextPageToken
|
If not empty, indicates that there may be more functions that match the request; this value should be passed in a new |
unreachable[]
|
Locations that could not be reached. The response does not include any functions from these locations. |
Authorization scopes
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/cloudfunctions -
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .

