- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Update project info
PUT
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
Body Params application/json
name
string
required
>= 1 characters
logo
string | null
required
>= 1 characters
isPrivate
boolean
required
description
string | null
required
>= 1 characters
color
string
required
>= 1 characters
Example
{
"name": "Test project",
"logo": "image/test.jpg",
"isPrivate": false,
"description": "Test description",
"color": "#003C93"
}
Responses
🟢200Successful response
application/json
Body
success
boolean
optional
Example
{
"success": true
}
Modified at 2024-01-23 10:07:01