- Get started
- Workspace
- Task Manager
- Portfolio
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Create portfolio
POST
https://api.weeek.net/public/v1/tm/portfolios
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
name
string
required
parentId
integer | null
optional
Example
{
"name": "string",
"parentId": 0
}
Responses
🟢200Success
application/json
Body
success
boolean
required
data
object
required
id
integer
required
name
string
required
parentId
integer | null
optional
isPrivate
boolean
required
Example
{
"success": true,
"data": {
"id": 0,
"name": "string",
"parentId": 0,
"isPrivate": true
}
}
Modified at 2025-04-25 09:39:02