Skip to content
Management API Reference

List all functions

get/v1/projects/{ref}/functions

Returns all functions you've previously added to the specified project.

OAuth scopes

  • edge_functions:read

Path parameters

  • ref
    Required
    string

    Project ref

Response codes

  • 200
  • 401
  • 403
  • 429
  • 500

Response (200)

1
[
2
{
3
"id": "lorem",
4
"slug": "lorem",
5
"name": "lorem",
6
"status": "ACTIVE",
7
"version": 42,
8
"created_at": 42,
9
"updated_at": 42,
10
"verify_jwt": true,
11
"import_map": true,
12
"entrypoint_path": "lorem",
13
"import_map_path": "lorem",
14
"ezbr_sha256": "lorem"
15
}
16
]