API Documents///
- Update funnel (legacy)
List of funnels
Create funnel (legacy)
Retrieve funnel by ID
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
Update funnel (legacy)
Update a funnel.
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/{funnelId}
- https://api-cdp.treasuredata.co.jphttps://api-cdp.treasuredata.co.jp/audiences/{audienceId}/funnels/{funnelId}
- https://api-cdp.eu01.treasuredata.comhttps://api-cdp.eu01.treasuredata.com/audiences/{audienceId}/funnels/{funnelId}
- https://api-cdp.ap02.treasuredata.comhttps://api-cdp.ap02.treasuredata.com/audiences/{audienceId}/funnels/{funnelId}
- https://api-cdp.ap03.treasuredata.comhttps://api-cdp.ap03.treasuredata.com/audiences/{audienceId}/funnels/{funnelId}
curl -i -X PUT \
'https://api-cdp.treasuredata.com/audiences/{audienceId}/funnels/{funnelId}' \
-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 update 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" } }