curl --request PUT \
--url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"orgId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"hubId": "<string>",
"recentPublishHistory": [
{
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"deletedAt": "2023-11-07T05:31:56Z",
"tags": {},
"thumbnailUrl": "<string>"
}
'import requests
url = "https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}"
payload = {
"id": "<string>",
"orgId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"hubId": "<string>",
"recentPublishHistory": [
{
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"deletedAt": "2023-11-07T05:31:56Z",
"tags": {},
"thumbnailUrl": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
id: '<string>',
orgId: '<string>',
name: '<string>',
createdAt: '2023-11-07T05:31:56Z',
updatedAt: '2023-11-07T05:31:56Z',
hubId: '<string>',
recentPublishHistory: [
{
id: '<string>',
taskId: '<string>',
lastEventId: '<string>',
listeners: [
{
id: '<string>',
appNodeId: '<string>',
operationNodeId: '<string>',
url: '<string>',
contentType: '<string>',
createdAt: '2023-11-07T05:31:56Z',
updatedAt: '2023-11-07T05:31:56Z',
security: {},
additionalHeaders: {},
deletedAt: '2023-11-07T05:31:56Z'
}
],
createdAt: '2023-11-07T05:31:56Z',
updatedAt: '2023-11-07T05:31:56Z',
deletedAt: '2023-11-07T05:31:56Z'
}
],
deletedAt: '2023-11-07T05:31:56Z',
tags: {},
thumbnailUrl: '<string>'
})
};
fetch('https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'id' => '<string>',
'orgId' => '<string>',
'name' => '<string>',
'createdAt' => '2023-11-07T05:31:56Z',
'updatedAt' => '2023-11-07T05:31:56Z',
'hubId' => '<string>',
'recentPublishHistory' => [
[
'id' => '<string>',
'taskId' => '<string>',
'lastEventId' => '<string>',
'listeners' => [
[
'id' => '<string>',
'appNodeId' => '<string>',
'operationNodeId' => '<string>',
'url' => '<string>',
'contentType' => '<string>',
'createdAt' => '2023-11-07T05:31:56Z',
'updatedAt' => '2023-11-07T05:31:56Z',
'security' => [
],
'additionalHeaders' => [
],
'deletedAt' => '2023-11-07T05:31:56Z'
]
],
'createdAt' => '2023-11-07T05:31:56Z',
'updatedAt' => '2023-11-07T05:31:56Z',
'deletedAt' => '2023-11-07T05:31:56Z'
]
],
'deletedAt' => '2023-11-07T05:31:56Z',
'tags' => [
],
'thumbnailUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}"
payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"orgId\": \"<string>\",\n \"name\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"hubId\": \"<string>\",\n \"recentPublishHistory\": [\n {\n \"id\": \"<string>\",\n \"taskId\": \"<string>\",\n \"lastEventId\": \"<string>\",\n \"listeners\": [\n {\n \"id\": \"<string>\",\n \"appNodeId\": \"<string>\",\n \"operationNodeId\": \"<string>\",\n \"url\": \"<string>\",\n \"contentType\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"security\": {},\n \"additionalHeaders\": {},\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"deletedAt\": \"2023-11-07T05:31:56Z\",\n \"tags\": {},\n \"thumbnailUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"id\": \"<string>\",\n \"orgId\": \"<string>\",\n \"name\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"hubId\": \"<string>\",\n \"recentPublishHistory\": [\n {\n \"id\": \"<string>\",\n \"taskId\": \"<string>\",\n \"lastEventId\": \"<string>\",\n \"listeners\": [\n {\n \"id\": \"<string>\",\n \"appNodeId\": \"<string>\",\n \"operationNodeId\": \"<string>\",\n \"url\": \"<string>\",\n \"contentType\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"security\": {},\n \"additionalHeaders\": {},\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"deletedAt\": \"2023-11-07T05:31:56Z\",\n \"tags\": {},\n \"thumbnailUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"id\": \"<string>\",\n \"orgId\": \"<string>\",\n \"name\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"hubId\": \"<string>\",\n \"recentPublishHistory\": [\n {\n \"id\": \"<string>\",\n \"taskId\": \"<string>\",\n \"lastEventId\": \"<string>\",\n \"listeners\": [\n {\n \"id\": \"<string>\",\n \"appNodeId\": \"<string>\",\n \"operationNodeId\": \"<string>\",\n \"url\": \"<string>\",\n \"contentType\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"security\": {},\n \"additionalHeaders\": {},\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"deletedAt\": \"2023-11-07T05:31:56Z\",\n \"tags\": {},\n \"thumbnailUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"orgId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"hubId": "<string>",
"activePublishInfo": {
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
},
"recentPublishHistory": [
{
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"deletedAt": "2023-11-07T05:31:56Z",
"tags": {},
"thumbnailUrl": "<string>"
}{
"code": "<string>",
"message": "<string>",
"extensions": {}
}Put organisations boards
Update an existing board, by ID for the given organisation.
curl --request PUT \
--url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"orgId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"hubId": "<string>",
"recentPublishHistory": [
{
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"deletedAt": "2023-11-07T05:31:56Z",
"tags": {},
"thumbnailUrl": "<string>"
}
'import requests
url = "https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}"
payload = {
"id": "<string>",
"orgId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"hubId": "<string>",
"recentPublishHistory": [
{
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"deletedAt": "2023-11-07T05:31:56Z",
"tags": {},
"thumbnailUrl": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
id: '<string>',
orgId: '<string>',
name: '<string>',
createdAt: '2023-11-07T05:31:56Z',
updatedAt: '2023-11-07T05:31:56Z',
hubId: '<string>',
recentPublishHistory: [
{
id: '<string>',
taskId: '<string>',
lastEventId: '<string>',
listeners: [
{
id: '<string>',
appNodeId: '<string>',
operationNodeId: '<string>',
url: '<string>',
contentType: '<string>',
createdAt: '2023-11-07T05:31:56Z',
updatedAt: '2023-11-07T05:31:56Z',
security: {},
additionalHeaders: {},
deletedAt: '2023-11-07T05:31:56Z'
}
],
createdAt: '2023-11-07T05:31:56Z',
updatedAt: '2023-11-07T05:31:56Z',
deletedAt: '2023-11-07T05:31:56Z'
}
],
deletedAt: '2023-11-07T05:31:56Z',
tags: {},
thumbnailUrl: '<string>'
})
};
fetch('https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'id' => '<string>',
'orgId' => '<string>',
'name' => '<string>',
'createdAt' => '2023-11-07T05:31:56Z',
'updatedAt' => '2023-11-07T05:31:56Z',
'hubId' => '<string>',
'recentPublishHistory' => [
[
'id' => '<string>',
'taskId' => '<string>',
'lastEventId' => '<string>',
'listeners' => [
[
'id' => '<string>',
'appNodeId' => '<string>',
'operationNodeId' => '<string>',
'url' => '<string>',
'contentType' => '<string>',
'createdAt' => '2023-11-07T05:31:56Z',
'updatedAt' => '2023-11-07T05:31:56Z',
'security' => [
],
'additionalHeaders' => [
],
'deletedAt' => '2023-11-07T05:31:56Z'
]
],
'createdAt' => '2023-11-07T05:31:56Z',
'updatedAt' => '2023-11-07T05:31:56Z',
'deletedAt' => '2023-11-07T05:31:56Z'
]
],
'deletedAt' => '2023-11-07T05:31:56Z',
'tags' => [
],
'thumbnailUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}"
payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"orgId\": \"<string>\",\n \"name\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"hubId\": \"<string>\",\n \"recentPublishHistory\": [\n {\n \"id\": \"<string>\",\n \"taskId\": \"<string>\",\n \"lastEventId\": \"<string>\",\n \"listeners\": [\n {\n \"id\": \"<string>\",\n \"appNodeId\": \"<string>\",\n \"operationNodeId\": \"<string>\",\n \"url\": \"<string>\",\n \"contentType\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"security\": {},\n \"additionalHeaders\": {},\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"deletedAt\": \"2023-11-07T05:31:56Z\",\n \"tags\": {},\n \"thumbnailUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"id\": \"<string>\",\n \"orgId\": \"<string>\",\n \"name\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"hubId\": \"<string>\",\n \"recentPublishHistory\": [\n {\n \"id\": \"<string>\",\n \"taskId\": \"<string>\",\n \"lastEventId\": \"<string>\",\n \"listeners\": [\n {\n \"id\": \"<string>\",\n \"appNodeId\": \"<string>\",\n \"operationNodeId\": \"<string>\",\n \"url\": \"<string>\",\n \"contentType\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"security\": {},\n \"additionalHeaders\": {},\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"deletedAt\": \"2023-11-07T05:31:56Z\",\n \"tags\": {},\n \"thumbnailUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/boards/{boardId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"id\": \"<string>\",\n \"orgId\": \"<string>\",\n \"name\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"hubId\": \"<string>\",\n \"recentPublishHistory\": [\n {\n \"id\": \"<string>\",\n \"taskId\": \"<string>\",\n \"lastEventId\": \"<string>\",\n \"listeners\": [\n {\n \"id\": \"<string>\",\n \"appNodeId\": \"<string>\",\n \"operationNodeId\": \"<string>\",\n \"url\": \"<string>\",\n \"contentType\": \"<string>\",\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"security\": {},\n \"additionalHeaders\": {},\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"createdAt\": \"2023-11-07T05:31:56Z\",\n \"updatedAt\": \"2023-11-07T05:31:56Z\",\n \"deletedAt\": \"2023-11-07T05:31:56Z\"\n }\n ],\n \"deletedAt\": \"2023-11-07T05:31:56Z\",\n \"tags\": {},\n \"thumbnailUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"orgId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"hubId": "<string>",
"activePublishInfo": {
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
},
"recentPublishHistory": [
{
"id": "<string>",
"taskId": "<string>",
"lastEventId": "<string>",
"listeners": [
{
"id": "<string>",
"appNodeId": "<string>",
"operationNodeId": "<string>",
"url": "<string>",
"contentType": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"security": {},
"additionalHeaders": {},
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"deletedAt": "2023-11-07T05:31:56Z",
"tags": {},
"thumbnailUrl": "<string>"
}{
"code": "<string>",
"message": "<string>",
"extensions": {}
}Authorizations
Body
Payload to update an existing Board.
The id and orgId fields are immutable and must match the fields from the URL. This is a full replace/update,
any unset fields will be unset in the database.
BoardStatus is used to indicate the status of a board. The "unknown" status is used in case of inconsistencies in the database with the Board scheduler and the API cannot deduce the correct status without administrator intervention.
If the status is "unknown", then clients should assume it's in a draft/published state based on whether the board has an "activePublishInfo" field. If a board cannot be published due to it already being published and the "activePublishInfo" field is null, users should contact support.
unknown, draft, publishing, published, unpublishing BoardPublishInfo provides information on a published board instance
Show child attributes
Show child attributes
RecentPublishHistory is an array of BoardPublishInfo containing up to the last 5 publishes for a board. If full history is required, users should use the ListPublishHistory operation for a paginated view.
Show child attributes
Show child attributes
Response
A single Board result
BoardStatus is used to indicate the status of a board. The "unknown" status is used in case of inconsistencies in the database with the Board scheduler and the API cannot deduce the correct status without administrator intervention.
If the status is "unknown", then clients should assume it's in a draft/published state based on whether the board has an "activePublishInfo" field. If a board cannot be published due to it already being published and the "activePublishInfo" field is null, users should contact support.
unknown, draft, publishing, published, unpublishing BoardPublishInfo provides information on a published board instance
Show child attributes
Show child attributes
RecentPublishHistory is an array of BoardPublishInfo containing up to the last 5 publishes for a board. If full history is required, users should use the ListPublishHistory operation for a paginated view.
Show child attributes
Show child attributes