- General
- Endpoints
Retrieve Single Board
GET
/board/{board_id}
Board
Request
Path Params
board_id
string <uuid>
required
Example:
550e8400-e29b-41d4-a716-446655440000
Query Params
show
string
optional
hide
string
optional
with
string
optional
Header Params
x-api-key
string
required
Default:
{{api_key}}
x-api-env
string
required
Default:
{{api_env}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vplan.com/v1/board/550e8400-e29b-41d4-a716-446655440000?show=&hide=&with=' \
--header 'x-api-key;' \
--header 'x-api-env;'
Responses
🟢200Ok
application/json
Body
id
string <uuid>
read-onlyoptional
name
string
optional
workdays
object (BoardWorkdays)
optional
1
boolean
required
Default:
true
2
boolean
required
Default:
true
3
boolean
required
Default:
true
4
boolean
required
Default:
true
5
boolean
required
Default:
true
6
boolean
required
Default:
false
7
boolean
required
Default:
false
color
enum<string>
optional
Allowed values:
bluebrownbubblegumcharcoalgreengreyindigolavendernavyoliveorangepinkpurpleraspberryredrubyskybluetealtransparentyellow
Default:
transparent
split_cards_by_activity
boolean
optional
Default:
false
own_backlog
boolean
optional
Default:
false
capacity_method
enum<string>
optional
Allowed values:
individualnone
Default:
individual
visibility
enum<string>
optional
Allowed values:
everyonerestricted
Default:
everyone
dependency_behavior
enum<string>
optional
Allowed values:
notifypushmaintain
Default:
notify
custom_fields
array[object (CustomField) {13}]
optional
id
string <uuid>
read-onlyoptional
name
string
optional
Example:
Weight
type
enum<string>
optional
Allowed values:
textnumberdatecheckboxemaillinkphonelistselectaddressdrawingtextareausers
Default:
text
Example:
number
scope
enum<string>
optional
Allowed values:
collectioncard
priority
integer
optional
Example:
0
value
string | integer | boolean | array | number | object | null
optional
drawing_id
string <uuid>
optional
components
object (CustomFieldOptionsAddress)
optional
list
array [object {3}]
optional
selected
object
optional
options
optional
number
, select
or list
typescreated_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
updated_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
created_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
updated_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
archived_at
string <date-time> | null
read-onlyoptional
Example:
null
Example
{
"id": "0d646fe8-b4a8-4586-b5ce-84286402e207",
"name": "Creative Process",
"workdays": {
"1": true,
"2": true,
"3": true,
"4": true,
"5": true,
"6": false,
"7": false
},
"custom_fields": [
{
"id": "b37cc519-e915-4c0c-937e-362611d3ddc7",
"board_id": "0d646fe8-b4a8-4586-b5ce-84286402e207",
"name": "Client",
"type": "text",
"scope": "collection",
"options": null,
"priority": 0,
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
},
{
"id": "f64f7589-fa31-4731-86e1-46800215f8fb",
"board_id": "0d646fe8-b4a8-4586-b5ce-84286402e207",
"name": "Project Number",
"type": "number",
"scope": "collection",
"options": null,
"priority": 1,
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
},
{
"id": "b9a53f5a-0e40-47fc-a414-8810e4d5fde3",
"board_id": "0d646fe8-b4a8-4586-b5ce-84286402e207",
"name": "teest",
"type": "select",
"scope": "collection",
"options": {
"values": [
{
"description": "da",
"color": ""
},
{
"description": "fa",
"color": ""
},
{
"description": "df",
"color": ""
},
{
"description": "d",
"color": ""
},
{
"description": "fa",
"color": ""
},
{
"description": "af",
"color": ""
},
{
"description": "a",
"color": ""
},
{
"description": "adf",
"color": ""
},
{
"description": "daf",
"color": ""
},
{
"description": "a",
"color": ""
},
{
"description": "a",
"color": ""
},
{
"description": "sd",
"color": ""
},
{
"description": "s",
"color": ""
}
],
"default": ""
},
"priority": 2,
"created_at": "2024-04-12T13:20:46Z",
"updated_at": "2024-04-12T13:20:46Z"
}
],
"color": "red",
"split_cards_by_activity": false,
"own_backlog": false,
"capacity_method": "individual",
"visibility": "everyone",
"dependency_behavior": "notify",
"archived_at": null,
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
}
🟠404Not Found
🟠401Not Logged In
Modified at 2024-11-21 17:12:55