API Documents///
- Create funnel (legacy)
List of funnels
Retrieve funnel by ID
Update funnel (legacy)
Delete funnel (legacy)
Clone funnel
Retrieve the population statistics of a funnel and its funnel stages
Create funnel
Retrieve funnel by ID
Update funnel
Delete funnel
Retrieve population statistics of funnel stage
Retrieve list of funnel by parent segment
Create funnel (legacy)
Create a new funnel, assign it a name and description matching your business needs.
This endpoint is for Audience Studio legacy. For the latest Audience Studio, contact your Customer Success Representative.
Security
TdApikeyAuth
- https://api-cdp.treasuredata.comhttps://api-cdp.treasuredata.com/audiences/{audienceId}/funnels
- https://api-cdp.treasuredata.co.jphttps://api-cdp.treasuredata.co.jp/audiences/{audienceId}/funnels
- https://api-cdp.eu01.treasuredata.comhttps://api-cdp.eu01.treasuredata.com/audiences/{audienceId}/funnels
- https://api-cdp.ap02.treasuredata.comhttps://api-cdp.ap02.treasuredata.com/audiences/{audienceId}/funnels
- https://api-cdp.ap03.treasuredata.comhttps://api-cdp.ap03.treasuredata.com/audiences/{audienceId}/funnels
curl -i -X POST \
'https://api-cdp.treasuredata.com/audiences/{audienceId}/funnels' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"description": "string",
"segmentFolderId": 0,
"stages": [
{
"name": "Awareness"
},
{
"id": 1,
"name": "Interest"
},
{
"name": "Conversion"
}
]
}'Succeeded to create funnel
funnel stages
Example:
[ { "id": "1", "name": "Awareness", "numSyndication": 2, "audienceId": "1", "funnelId": "10", "segmentFolderId": "30", "segmentId": "999" }, { "id": "2", "name": "Interest", "numSyndications": 0, "audienceId": "1", "funnelId": "10", "segmentFolderId": "30", "segmentId": "" }, { "id": "3", "name": "Conversion", "numSyndications": 0, "audienceId": "1", "funnelId": "10", "segmentFolderId": "30", "segmentId": "" } ]
Response
{ "id": "string", "audienceId": "string", "segmentFolderId": "string", "name": "string", "population": 0, "description": "string", "numSyndications": 0, "needToRunWorkflow": true, "stages": [ { … }, { … }, { … } ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "createdBy": { "id": "string", "td_user_id": "string", "name": "string" }, "updatedBy": { "id": "string", "td_user_id": "string", "name": "string" } }