Skip to main content
POST
/
workflows
Create Workflow
curl --request POST \
  --url https://app.conduit.io/api/workflows \
  --header 'Content-Type: application/json' \
  --cookie session= \
  --data '
{
  "accountId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "status": "active"
}
'
{
  "workflow": {
    "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

Body

application/json
accountId
string
required

Account ID

name
string
required

Workflow name

Required string length: 1 - 100
description
string

Workflow description

Maximum string length: 500
status
enum<string>
default:active

Workflow status

Available options:
active,
paused

Response

Workflow created successfully

workflow
object