Retrieve calls

Retrieve function calls by call ids.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
path Parameters
functionId
required
integer

The function id.

Request Body schema: application/json

List of IDs of calls to retrieve. Must be up to a maximum of 10000 items and all of them must be unique.

required
Array of objects (FunctionCallId) [ 1 .. 10000 ] items
ignoreUnknownIds
boolean
Default: false

Ignore IDs and external IDs that are not found

Responses
200

List of function calls.

400

The response for a failed request.

post/functions/{functionId}/calls/byids
Request samples
call = client.functions.calls.retrieve(call_id=2, function_id=1)

func = client.functions.retrieve(id=1)
call = func.retrieve_call(id=2)
Response samples
application/json
{
  • "items": [
    • {
      }
    ]
}