Skip to main content
POST
/
api
/
v1
/
executor
/
node
Execute a single node
curl --request POST \
  --url https://api.dualship.run/api/v1/executor/node \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "context": {},
  "node": [
    123
  ]
}
'
{
  "aborted": false,
  "output": "<unknown>",
  "response": "<unknown>",
  "status": 200,
  "success": true
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Body

application/json

Node execution request

context
object
required
node
integer[]
required

Response

Node executed successfully

aborted
boolean
Example:

false

output
any
response
any
status
integer
Example:

200

success
boolean
Example:

true