Skip to main content
POST
/
functions
/
{slug}
Execute function
curl --request POST \
  --url https://api.example.com/functions/{slug} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John",
  "age": 30
}
'
{
  "message": "Hello, John!"
}

Path Parameters

slug
string
required

Function slug identifier

Body

application/json

The body is of type object.

Response

Function executed successfully

The response is of type object.