- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get all funnels
GET
https://api.weeek.net/public/v1/crm/funnels
CRM.Funnel
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Responses
🟢200Success
application/json
Body
success
booleanÂ
optional
funnels
array[object (Funnel) {13}]Â
optional
id
stringÂ
read-onlyoptional
creatorId
string <uuid>
read-onlyoptional
currencyId
integerÂ
optional
Default:
1
name
stringÂ
optional
logo
string <uri> | nullÂ
read-onlyoptional
dealsCount
integerÂ
read-onlyoptional
dealsAmount
number <double>
read-onlyoptional
isPrivate
booleanÂ
optional
Default:
false
isBookmarked
booleanÂ
read-onlyoptional
Default:
false
createdAt
string <date-time>
read-onlyoptional
updatedAt
string <date-time>
read-onlyoptional
team
array[string <uuid>]
optional
customFields
array[object (CustomField) {5}]Â
optional
Example
{
"success": true,
"funnels": [
{
"id": "string",
"creatorId": "688ebf54-d343-4104-8711-82c2feac534a",
"currencyId": 1,
"name": "string",
"logo": "http://example.com",
"dealsCount": 0,
"dealsAmount": 0,
"isPrivate": false,
"isBookmarked": false,
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"team": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"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-02-15 16:24:49