Get Execution
endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.curl --location --request POST 'https://appwrite.io/v1/functions//executions' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": "string"
}'
{
"$id": "string",
"dateCreated": 0,
"exitCode": 0,
"functionId": "string",
"status": "string",
"stderr": "string",
"stdout": "string",
"time": 0,
"trigger": "string"
}