POST
/
organisations
/
{organisationId}
/
board-instances
/
{boardId}
/
trigger-execution
curl --request POST \
  --url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/board-instances/{boardId}/trigger-execution \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "nodeIds": [
    "<string>"
  ]
}'
{
  "ok": true,
  "nodes": [
    {
      "ok": true,
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

organisationId
string
required
boardId
string
required

Body

application/json

TriggerBoardExecutionRequest is the payload to trigger a Board to be executed

The body is of type object.

Response

202
application/json

TriggerBoardExecutionResponse is returned after triggering a board to execute.

BoardTriggered is used to indicate if the trigger request has been accepted. The actual scheduling is done in the background and does not indicate the board has finished execution yet.