Get all funnels
GET
/crm/funnelsRequest
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
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:22.123Z",
"updatedAt": "2019-08-24T14:15:22.123Z",
"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"
}
]
}
]
}
]
}
Last modified: a year ago