Skip to content

Fetches board metadata.

GET
/boards/{board_id}
board_id
required
string format: uuid

The external id of the board to retrieve metadata for.

Examples

An existing board

c6d3d10e-8e49-4d73-b28a-9d652b41beec

The board metadata.

One of:
object
id
required
string format: uuid
realm_id
required
string
slug
required
string
avatar_url
required
string format: uri-reference
tagline
required
string
accent_color
required
string
logged_in_only
required
boolean
delisted
required
boolean
descriptions
required
Array
One of: discriminator: type
object
id
required
string format: uuid
index
required
number
title
required
string
type
required
string
Allowed values: text
description
required
string
Examples

An existing board

{
"id": "c6d3d10e-8e49-4d73-b28a-9d652b41beec",
"realm_id": "f377afb3-5c62-40cc-8f07-1f4749a780eb",
"slug": "gore",
"tagline": "Blood! Blood! Blood!",
"avatar_url": "/gore.png",
"accent_color": "#f96680",
"delisted": false,
"logged_in_only": false,
"descriptions": [
{
"id": "f377afb3-5c62-40cc-8f07-1f4749a780eb",
"type": "category_filter",
"index": 2,
"title": "Gore Categories",
"categories": [
"blood",
"bruises"
],
"description": null
},
{
"id": "f377afb3-5c62-40cc-8f07-1f4749a780eb",
"type": "text",
"index": 1,
"title": "Gore description",
"categories": null,
"description": "[{\"insert\": \"pls b nice\"}]"
}
]
}

User was not found and board requires authentication.

object
message
string
Example
{
"message": "User must be authenticated to access board."
}

User is not authorized to fetch the metadata of this board.

object
message
string
Example
{
"message": "User does not have required permission to access board."
}

The board was not found.

string
Example
Not Found