Skip to main content
GET
/
api
/
v2
/
public
/
workflow
/
enabled
curl -X GET "https://app.refold.ai/api/v2/public/workflow/enabled" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID"
[
  {
    "id": "6a057a07803e7107e790b596",
    "name": "Lead Sync",
    "description": "",
    "icon": "",
    "config_id": "user_12345",
    "application": {
      "_id": "6992cc7dc124a392c80e9e9c",
      "name": "Hubspot",
      "icon": "https://cobalt-app-logos.s3.ap-south-1.amazonaws.com/hubspot/logo.png",
      "description": "HubSpot is your all-in-one stop for all of your marketing software needs."
    }
  }
]
List the workflows enabled across a linked account’s installations. For each enabled workflow, the response includes its id, name, icon, the installation’s config_id, and the populated application document.
This is scoped to a linked account, so it reflects that account’s enabled workflows (its private workflows plus the public ones it has enabled).

Authentication

This endpoint is scoped to a linked account, so it accepts either authentication method. Option 1 — API key
x-api-key
string
Your Refold API key.
linked_account_id
string
The linked account.
Option 2 — Session token
Authorization
string
Session token. Format: Bearer YOUR_SESSION_TOKEN

Response

Returns an array of enabled workflows.
id
string
Workflow ID.
name
string
Workflow name.
icon
string
Workflow icon.
config_id
string
The installation’s config ID.
application
object
The populated application {_id, name, icon, description}.
[
  {
    "id": "6a057a07803e7107e790b596",
    "name": "Lead Sync",
    "description": "",
    "icon": "",
    "config_id": "user_12345",
    "application": {
      "_id": "6992cc7dc124a392c80e9e9c",
      "name": "Hubspot",
      "icon": "https://cobalt-app-logos.s3.ap-south-1.amazonaws.com/hubspot/logo.png",
      "description": "HubSpot is your all-in-one stop for all of your marketing software needs."
    }
  }
]
curl -X GET "https://app.refold.ai/api/v2/public/workflow/enabled" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID"