POST
/
organisations
/
{organisationId}
/
boards
/
{boardId}
/
publish
curl --request POST \
  --url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}/publish \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "lastEventId": "<string>",
  "boardDeployVersion": "<string>"
}'
{
  "ok": true,
  "taskId": "<string>"
}

Authorizations

Authorization
string
header
required

Path Parameters

organisationId
string
required
boardId
string
required

Body

application/json

Payload to trigger a board to be published

The body is of type object.

Response

202
application/json

The response after a board has been scheduled to execute.

BoardPublishResult is used to indicate if the publish request has been accepted. The actual scheduling is done in the background and does not indicate the board is ready to accept data.