Required capabilities:
functionsAcl:READ
List function calls.
Paged response with list of function calls.
The response for a failed request.
logs = client.functions.calls.get_logs(call_id=2, function_id=1) call = client.functions.calls.retrieve(call_id=2, function_id=1) logs = call.get_logs()
{- "items": [
- {
- "id": 1,
- "status": "Running",
- "startTime": 1730204346000,
- "endTime": 1730204346000,
- "error": "ZeroDivisionError: division by zero",
- "scheduleId": 1,
- "functionId": 1,
- "scheduledTime": 1730204346000
}
], - "nextCursor": "string"
}