Skip to main content
GET
/
compute
/
collections
/
{collection_topic}
/
functions
Get functions by collection
curl --request GET \
  --url https://api.quiva.ai/compute/collections/{collection_topic}/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.

Path Parameters

collection_topic
string
required

Collection topic identifier

Response

A list of functions

body
object