API Documents///
- Create journey
List journeys
Retrieve summary of specified journey
Update journey entity
Delete journey entity
Update meta field
Retrieve a list of available behavior table of specified step
Retrieve a list of journey activation templates of specified step
Create a duplicate of the specified journey
Retrieve journey statistics
Trigger on-demand journey workflow execution
Retrieve the list of conversion sankey chart source data
Retrieve the list of activation sankey chart source data
Retrieve list of profiles in journey
Retrieve list of segment rules available in audience
Retrieve list of journey activations in journey
Create an activation step in journey
Retrieve summary of activation node in journey
Update the configuration of the activation step in journey
Pause journey and associated activations schedules.
Resume journey and associated activations schedules.
Retrieve list of profiles in the journey stage
Return the journey bundle information
Update the metadata of the journey bundle
Delete the journey bundle
Returns the latest journey in the bundle
Return the list of statistics of jouney under the bundle
Return the list of conversion sankey charts of journey under the bundle
Return the list of activation sankey charts of journey under the bundle
Returns the list of activations associated with the journey bundle
Create the new journey under the bundle with copying the latest journey
Validate the journey can be appended to the bundle
Create journey
Create a journey.
Security
TdApikeyAuth
- https://api-cdp.treasuredata.comhttps://api-cdp.treasuredata.com/entities/journeys
- https://api-cdp.treasuredata.co.jphttps://api-cdp.treasuredata.co.jp/entities/journeys
- https://api-cdp.eu01.treasuredata.comhttps://api-cdp.eu01.treasuredata.com/entities/journeys
- https://api-cdp.ap02.treasuredata.comhttps://api-cdp.ap02.treasuredata.com/entities/journeys
- https://api-cdp.ap03.treasuredata.comhttps://api-cdp.ap03.treasuredata.com/entities/journeys
- JourneyWaitStepDuration
- JourneyWaitStepDate
- JourneyWaitStepDaysOfTheWeek
- JourneyWaitStepCondition
curl -i -X POST \
https://api-cdp.treasuredata.com/entities/journeys \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/vnd.treasuredata.v1+json' \
-d '{
"type": "journey",
"attributes": {
"name": "My new journey",
"description": "",
"state": "draft",
"journeyStages": [
{
"name": "stage1"
},
{
"name": "stage2"
}
]
},
"relationships": {
"parentFolder": {
"data": {
"id": "688641",
"type": "folder-segment"
}
}
}
}'Response
{ "data": { "id": "string", "type": "journey", "attributes": { … }, "relationships": { … } }, "included": [ { … } ] }