Set Workflow Breakpoint

Set Workflow Breakpoint

Sets a single breakpoint for a workflow

Request
URI
POST
https://{api_host}/vco/api/debugger/{workflowId}/breakpoint
COPY
Path Parameters
string
workflowId
Required

workflowId

Query Parameters
string
elementName
Required

elementName

integer
lineNumber
Required

lineNumber


Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns WsBreakpoint of type(s) application/json
{
    "workflowId": "string",
    "elementName": "string",
    "lineNumber": 0,
    "active": false
}
string
workflowId
Required

workflowId

string
elementName
Required

elementName

integer As int32 As int32
lineNumber
Required

lineNumber

boolean
active
Required

active


401

The user is not authorized

Returns WsBreakpoint of type(s) application/json
"WsBreakpoint Object"
string
workflowId
Required

workflowId

string
elementName
Required

elementName

integer As int32 As int32
lineNumber
Required

lineNumber

boolean
active
Required

active


404

Cannot find a workflow with the specified ID or the user does not have 'read' access rights for that workflow

Returns WsBreakpoint of type(s) application/json
"WsBreakpoint Object"
string
workflowId
Required

workflowId

string
elementName
Required

elementName

integer As int32 As int32
lineNumber
Required

lineNumber

boolean
active
Required

active


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' https://{api_host}/vco/api/debugger/{workflowId}/breakpoint