- Get started
- Changelog
- Workspace
- Task Manager
- Portfolio
- 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 ********************
Cookie Params
XDEBUG_SESSION
string
optional
Default:
XDEBUG_ECLIPSE
Responses
🟢200Successful response
application/json
Body
success
boolean
optional
projects
array[object (Project) {10}]
optional
id
integer
optional
name
string
optional
>= 1 characters
logoLink
string | null
optional
description
string | null
optional
color
string
optional
>= 1 characters
status
enum<integer>
optional
Allowed values:
12
isPrivate
boolean
optional
portfolioId
integer | null
optional
team
array[string]
optional
customFields
array[object (CustomField) {5}]
optional
Example
{
"success": true,
"projects": [
{
"id": 0,
"name": "string",
"logoLink": "string",
"description": "string",
"color": "string",
"status": 1,
"isPrivate": true,
"portfolioId": 0,
"team": [
"string"
],
"customFields": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"type": "text",
"config": {
"type": "number",
"precision": 0,
"currency": 1
},
"options": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"color": "blue"
}
]
}
]
}
]
}
Modified at 2024-01-23 10:07:01