Skip to main content
GET
/
api
/
v1
/
console
/
workflows
/
{workflowId}
Get workflow
curl --request GET \
  --url https://api.bimpe.ai/api/v1/console/workflows/{workflowId} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Success",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "category": "<string>",
    "is_owner": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "system_prompt": "<string>",
    "rules": [
      {
        "id": "<string>",
        "name": "<string>",
        "trigger": "<string>",
        "response": "<string>",
        "enabled": true,
        "condition": "<string>",
        "action": "<string>"
      }
    ],
    "flows": [
      {}
    ],
    "tags": [
      "<string>"
    ],
    "prompt_config": {}
  }
}

Authorizations

Authorization
string
header
required

Team API key (prefix sk_). Use Authorization: Bearer or X-Api-Key: .

Path Parameters

workflowId
string
required

Response

Workflow detail

message
string
required
Example:

"Success"

data
object
required