API Documents///
- Create funnel
List of funnels
Create funnel (legacy)
Retrieve funnel by ID
Update funnel (legacy)
Delete funnel (legacy)
Clone funnel
Retrieve the population statistics of a funnel and its funnel stages
Retrieve funnel by ID
Update funnel
Delete funnel
Retrieve population statistics of funnel stage
Retrieve list of funnel by parent segment
Create funnel
Create a funnel.
- https://api-cdp.treasuredata.comhttps://api-cdp.treasuredata.com/entities/funnels
- https://api-cdp.treasuredata.co.jphttps://api-cdp.treasuredata.co.jp/entities/funnels
- https://api-cdp.eu01.treasuredata.comhttps://api-cdp.eu01.treasuredata.com/entities/funnels
- https://api-cdp.ap02.treasuredata.comhttps://api-cdp.ap02.treasuredata.com/entities/funnels
- https://api-cdp.ap03.treasuredata.comhttps://api-cdp.ap03.treasuredata.com/entities/funnels
curl -i -X POST \
https://api-cdp.treasuredata.com/entities/funnels \
-H 'Content-Type: application/vnd.treasuredata.v1+json' \
-d '{
"id": "string",
"type": "funnel",
"attributes": {
"name": "string",
"description": "string",
"stages": [
{
"id": "string",
"segmentId": "string",
"name": "string",
"numSyndications": 0
}
]
},
"relationships": {
"parentFolder": {
"data": {
"id": "string",
"type": "folder-segment"
}
}
}
}'Response
{ "data": { "id": "string", "type": "funnel", "attributes": { … }, "relationships": { … } }, "included": [ { … } ] }