v1

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

Get Execution

Get a function execution log by its unique ID.

get/functions/{functionId}/executions/{executionId}

Path parameters

functionIdstring required

Function unique ID.

executionIdstring required

Execution unique ID.

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.