Skip to main content
GET
/
integration
/
workflow-cards
Get Cards with Workflows
curl --request GET \
  --url https://app.cardclan.io/api/integration/workflow-cards \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "integrationId": "60f7b2b5b8f4a20015a4f5a7",
      "cardId": "60f7b2b5b8f4a20015a4f5a5",
      "workspaceId": "60f7b2b5b8f4a20015a4f5a4",
      "createdAt": "2023-07-20T10:30:00.000Z",
      "updatedAt": "2023-07-20T10:30:00.000Z",
      "card": {
        "_id": "60f7b2b5b8f4a20015a4f5a5",
        "integrationId": "60f7b2b5b8f4a20015a4f5a7",
        "title": "Welcome Card",
        "mergeTags": [
          {
            "tagName": "name",
            "type": "text"
          }
        ]
      },
      "workspace": {
        "_id": "60f7b2b5b8f4a20015a4f5a4",
        "name": "My Business Workspace"
      }
    }
  ],
  "message": "User cards with workflows"
}
Retrieves all cards that have active integration workflows for the authenticated user. This endpoint helps you manage and monitor cards that are currently being used in automated workflows across different integration platforms.

Response Details

data
array
Array of cards with active integration workflows
message
string
Success message: “User cards with workflows”

Response Example

{
  "data": [
    {
      "integrationId": "60f7b2b5b8f4a20015a4f5a7",
      "cardId": "60f7b2b5b8f4a20015a4f5a5",
      "workspaceId": "60f7b2b5b8f4a20015a4f5a4",
      "createdAt": "2023-07-20T10:30:00.000Z",
      "updatedAt": "2023-07-20T10:30:00.000Z",
      "card": {
        "_id": "60f7b2b5b8f4a20015a4f5a5",
        "integrationId": "60f7b2b5b8f4a20015a4f5a7",
        "title": "Welcome Card",
        "mergeTags": [
          {
            "tagName": "name",
            "type": "text"
          },
          {
            "tagName": "email",
            "type": "email"
          }
        ]
      },
      "workspace": {
        "_id": "60f7b2b5b8f4a20015a4f5a4",
        "name": "Marketing Workspace"
      }
    }
  ],
  "message": "User cards with workflows"
}

Authorizations

Authorization
string
header
required

Enter your CardClan integration key

Response

Cards with workflows retrieved successfully

data
object[]
message
string
Example:

"User cards with workflows"