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": {
- "trace": "Cannot assign foo to bar.",
- "message": "Could not authenticate."
}, - "scheduleId": 1,
- "functionId": 1,
- "scheduledTime": 1730204346000
}
], - "nextCursor": "string"
}