- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get project
GET
https://api.weeek.net/public/v1/tm/projects/{id}
Project
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Responses
🟢200OK
application/json
Body
success
boolean
optional
project
object (Project)
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,
"project": {
"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