Skip to main content
GET
/
functions
/
{functionId}
/
calls
/
{callId}
/
response
Python SDK
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
  }
}

Authorizations

Authorization
string
header
required

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.

Path Parameters

callId
integer
required

The function call id.

functionId
integer
required

The function id.

Response

OK

The function response.

functionId
integer<int64>
required

A server-generated ID for the object.

Required range: 1 <= x <= 9007199254740991
callId
integer<int64>
required

A server-generated ID for the object.

Required range: 1 <= x <= 9007199254740991
response
object
Last modified on April 23, 2026