- Get started
- Workspace
- Task Manager
- Portfolio
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get portfolios
GET
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 ********************
Query Params
search
string
optional
parentId
integer
optional
limit
integer
optional
>= 0<= 100
offset
integer
optional
>= 0
Responses
🟢200Success
application/json
Body
success
boolean
required
data
array [object {4}]
required
id
integer
required
name
string
required
parentId
integer | null
optional
isPrivate
boolean
required
hasMore
boolean
required
Example
{
"success": true,
"data": [
{
"id": 0,
"name": "string",
"parentId": 0,
"isPrivate": true
}
],
"hasMore": true
}
Modified at 2025-04-25 09:45:51