POST
/
api
/
v2
/
workflow
/
{workflow_id}
/
node
/
{node_id}
/
start
curl --request POST \
  --url https://api.jsonify.com/api/v2/workflow/{workflow_id}/node/{node_id}/start \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "result": {
    "changed": true,
    "credits": {
      "remaining": 123,
      "used": 123
    },
    "details": {
      "descr": "<string>"
    },
    "json": {
      "data": true
    },
    "screenshots": [
      "<string>"
    ],
    "when": 123,
    "done": true,
    "id": "<string>"
  },
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflow_id
string
required

The GUID of a wokflow

Example:

"00000000-0000-0000-0000-000000000000"

node_id
string
required

The GUID of a wokflow

Example:

"00000000-0000-0000-0000-000000000000"

Response

200 - application/json

A task result

The response is of type object.