v2

latestOpenAPI 3.1.02026-07-2670186350.6 KB
functions

List Functions

List existing functions with the most recent revision in the current project

get/functions

Query parameters

namestring nullable

Filter functions by name

Example:my-function

Filter functions by name

sortstring nullable

Sort the functions by name or created_at, use '-' to sort in descending order

Example:name

Sort the functions by name or created_at, use '-' to sort in descending order

offsetinteger nullable

The offset of the page of functions to return when paginating

The offset of the page of functions to return when paginating

limitinteger nullable

The number of functions to return per page when paginating

The number of functions to return per page when paginating

Response

Successful Response

Example response

{
  "meta": {
    "total_count": 1
  },
  "data": [
    {
      "name": "my-function"
    }
  ]
}