Skip to main content
GET
/
function-apps
/
{functionExternalId}
/
calls
/
{callId}
/
response
Get Call Response
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/function-apps/{functionExternalId}/calls/{callId}/response \
  --header 'Authorization: Bearer <token>'
{
  "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

functionExternalId
string
required

Function external ID

callId
integer
required

The function call 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