Set Workflow Breakpoints

Set Workflow Breakpoints

Sets multiple breakpoints for a workflow

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

workflowId


Request Body
WsBreakpoints of type(s) application/json
Required
{
    "breakpoints": [
        {
            "workflowId": "string",
            "elementName": "string",
            "lineNumber": 0,
            "active": false
        }
    ]
}
array of object
breakpoints
Optional

breakpoints

Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns WsBreakpoints of type(s) application/json
"WsBreakpoints Object"
array of object
breakpoints
Optional

breakpoints


401

The user is not authorized

Returns WsBreakpoints of type(s) application/json
"WsBreakpoints Object"
array of object
breakpoints
Optional

breakpoints


404

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

Returns WsBreakpoints of type(s) application/json
"WsBreakpoints Object"
array of object
breakpoints
Optional

breakpoints


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/vco/api/debugger/{workflowId}/breakpoints