- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get board list
GET
https://api.weeek.net/public/v1/tm/boards
Board
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
projectId
integer
optional
Responses
🟢200Successful response
application/json
Body
success
boolean
optional
boards
array[object (Board) {4}]
optional
id
integer
required
name
string
required
projectId
integer
required
isPrivate
boolean
required
Example
{
"success": true,
"boards": [
{
"id": 0,
"name": "string",
"projectId": 0,
"isPrivate": true
}
]
}
Modified at 2025-01-15 13:14:52