Function calls

List Function Calls

GET
/v2/functions/calls
x-api-key<token>

Authenticate using API Key in request header

In: header

Query Parameters

limit?integer
Default50
Range1 <= value <= 100
functionCallIDs?array<string>
Items1 <= items
referenceIDs?array<string>
Items1 <= items

Response Body

application/json

curl -X GET "https://api.bem.ai/v2/functions/calls"
{
  "totalCount": 0,
  "functionCalls": [
    {
      "functionCallID": "string",
      "functionID": "string",
      "functionName": "string",
      "type": "transform",
      "referenceID": "string",
      "status": "pending",
      "functionVersionNum": 0,
      "activity": [
        {
          "displayName": "string",
          "status": "pending"
        }
      ],
      "sourceFunctionCallID": "string",
      "workflowCallID": "string",
      "inputType": "string",
      "s3URL": "string",
      "inputs": [
        {
          "inputType": "string",
          "itemReferenceID": "string",
          "s3URL": "string"
        }
      ]
    }
  ]
}