Function calls

Get a Function Call

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

Authenticate using API Key in request header

In: header

Path Parameters

functionCallID*string

Response Body

application/json

curl -X GET "https://api.bem.ai/v2/functions/calls/string"
{
  "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"
    }
  ]
}