v1

latestOpenAPI 3.0.0BSD-3-Clause2026-07-146135105.7 KB
functions

Create Execution

Trigger a function execution. The returned object will return you the current execution status. You can ping the Get Execution endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.

post/functions/{functionId}/executions

Path parameters

functionIdstring required

Function unique ID.

Request body

datastring

String of custom data to send to function.

Response

Execution

$idstring required

Execution ID.

dateCreatedinteger required

The execution creation date in Unix timestamp.

exitCodeinteger required

The script exit code.

functionIdstring required

Function ID.

statusstring required

The status of the function execution. Possible values can be: waiting, processing, completed, or failed.

stderrstring required

The script stderr output string. Logs the last 4,000 characters of the execution stderr output

stdoutstring required

The script stdout output string. Logs the last 4,000 characters of the execution stdout output.

timenumber float required

The script execution time in seconds.

triggerstring required

The trigger that caused the function to execute. Possible values can be: http, schedule, or event.