Create Execution
POST
/functions/{functionId}/executions
functions
Get Execution
endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://appwrite.io/v1/functions//executions' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": "string"
}'
Response Response Example
{
"$id": "string",
"dateCreated": 0,
"exitCode": 0,
"functionId": "string",
"status": "string",
"stderr": "string",
"stdout": "string",
"time": 0,
"trigger": "string"
}
Request
Path Params
functionId
string
required
Body Params application/json
Responses
Modified at 2023-08-16 07:28:13