- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get project list
GET
https://api.weeek.net/public/v1/tm/projects
Project
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Responses
🟢200Successful response
application/json
Body
success
booleanÂ
optional
projects
array[object (Project) {8}]Â
optional
id
integerÂ
optional
title
stringÂ
optional
>= 1 characters
logoLink
string  | nullÂ
optional
description
string  | nullÂ
optional
color
stringÂ
optional
>= 1 characters
isPrivate
booleanÂ
optional
team
array[string]
optional
customFields
array[object (CustomField) {5}]Â
optional
Example
{
"success": true,
"projects": [
{
"id": 0,
"title": "string",
"logoLink": "string",
"description": "string",
"color": "string",
"isPrivate": true,
"team": [
"string"
],
"customFields": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"type": "text",
"config": {
"type": "switch"
},
"options": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"color": "blue"
}
]
}
]
}
]
}
Modified at 2024-01-23 10:07:01