Host: https://i.kakeru.app
Authorization: Bearer $token
You can get $token on account settings.
This document uses JSON with comments.
List boards, sorted by createdAt
in descending order.
Currently, it just return first 30 boards.
{
"boards": [
{
"id": "1fa2329bc80eb299bc",
"title": "Test board",
// public, protected, or private
"accessibilityLevel": "public",
"createdAt": "2024-10-02T00:00:00Z",
"updatedAt": "2024-10-02T00:00:00Z"
},
{
"id": "2fa2329bc80eb299bc",
"title": "Test board 2",
"accessibilityLevel": "private",
"createdAt": "2024-10-01T00:00:00Z",
"updatedAt": "2024-10-01T00:00:00Z"
},
]
}
Get board with given ID.
Not implemented yet.
{
"id": "1fa2329bc80eb299bc",
"title": "Test board",
"accessibilityLevel": "public",
"createdAt": "2024-10-02T00:00:00Z",
"updatedAt": "2024-10-02T00:00:00Z"
}
Create a new board.
Not implemented yet.
{
"title": "Test board",
"accessibilityLevel": "public"
}
{
"id": "1fa2329bc80eb299bc",
"title": "Test board",
"accessibilityLevel": "public",
"createdAt": "2024-10-02T00:00:00Z",
"updatedAt": "2024-10-02T00:00:00Z"
}
Update board with given ID.
Not implemented yet.
{
"title": "Test board 2",
"accessibilityLevel": "private"
}
{
"id": "1fa2329bc80eb299bc",
"title": "Test board 2",
"accessibilityLevel": "private",
"createdAt": "2024-10-02T00:00:00Z",
"updatedAt": "2024-10-02T00:00:00Z"
}