- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Create tag
POST
https://api.weeek.net/public/v1/ws/tags
Tag
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
title
string
required
Example
{
"title": "Work"
}
Responses
🟢200Successful response
application/json
Body
success
boolean
optional
tag
object (Tag)
optional
id
integer <int64>
required
>= 1
title
string
required
color
string
required
Example
{
"success": true,
"tag": {
"id": 1,
"title": "string",
"color": "string"
}
}
Modified at 2024-03-13 22:42:55