Skip to main content
GET
/
workflows
List Workflows
curl --request GET \
  --url https://app.conduit.io/api/workflows \
  --cookie session=
{
  "workflows": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "accountId": "<string>",
      "name": "Daily USDC Deposit",
      "status": "active",
      "createdById": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "description": "<string>"
    }
  ]
}

Authorizations

session
string
cookie
required

Session-based authentication via cookies

Query Parameters

accountId
string

Filter by account ID

status
enum<string>

Filter by status

Available options:
active,
paused

Response

List of workflows

workflows
object[]