Workflows

Get a Workflow

GET
/v2/workflows/{workflowName}
x-api-key<token>

Authenticate using API Key in request header

In: header

Path Parameters

workflowNamestring

Response Body

curl -X GET "https://api.bem.ai/v2/workflows/string"
{
  "workflow": {
    "id": "string",
    "name": "string",
    "versionNum": 0,
    "displayName": "string",
    "emailAddress": "string",
    "tags": [
      "billing",
      "finance",
      "automated"
    ],
    "mainFunction": {
      "id": "string",
      "name": "string",
      "versionNum": 0
    },
    "relationships": [
      {
        "sourceFunction": {
          "id": "string",
          "name": "string",
          "versionNum": 0
        },
        "destinationName": "string",
        "destinationFunction": {
          "id": "string",
          "name": "string",
          "versionNum": 0
        }
      }
    ],
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  },
  "error": "string"
}