Skip to main content
GET
/
compute
/
functions
Get all functions
curl --request GET \
  --url https://api.quiva.ai/compute/functions \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "description": "A serverless function",
        "name": "my-function",
        "runtime": "nodejs",
        "subject": "ms.compute.my-namespace.function.123456789",
        "type": "created",
        "modified": 1714378974
      }
    ],
    "results_total": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of functions

body
object