response = client.functions.calls.get_response(call_id=2, function_id=1)
call = client.functions.calls.retrieve(call_id=2, function_id=1)
response = call.get_response(){
"response": {
"numAssets": 1234,
"someCalculation": 3.14
}
}Required capabilities:
functionsAcl:READ
Retrieve response from a function call.
response = client.functions.calls.get_response(call_id=2, function_id=1)
call = client.functions.calls.retrieve(call_id=2, function_id=1)
response = call.get_response(){
"response": {
"numAssets": 1234,
"someCalculation": 3.14
}
}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
The function call id.
The function id.
Was this page helpful?