Retrieve function calls by call ids.
List of IDs of calls to retrieve. Must be up to a maximum of 10000 items and all of them must be unique.
List of function calls.
The response for a failed request.
call = client.functions.calls.retrieve(call_id=2, function_id=1) func = client.functions.retrieve(id=1) call = func.retrieve_call(id=2)
{- "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
}
]
}