PUT api/userJourneys/{id}
Updates a user journey.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the user journey to update. |
globally unique identifier |
Required |
Body Parameters
The user journey model to update with.
UserJourneyDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required |
|
| DisplayName | string |
Required |
|
| CreationDate | date |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| Type | UserJourneyTypeDto |
None. |
|
| SortIndex | integer |
None. |
|
| UserJourneyProperties | Collection of UserJourneyPropertyDto |
None. |
|
| ModuleSettings | Collection of ModuleSettingDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1a9a8aab-4b0f-419f-a024-516ebe9db281",
"Name": "sample string 2",
"DisplayName": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"TenantId": "87cfa96c-c12f-468b-96e1-2e89846c4f4c",
"Type": 0,
"SortIndex": 6,
"UserJourneyProperties": [
{
"Id": "ae2e2d53-ee89-46f4-852e-1bd1877264cb",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"UserJourneyId": "9bb818fa-3cee-4e9c-8ce5-2e3377dc5a84"
},
{
"Id": "ae2e2d53-ee89-46f4-852e-1bd1877264cb",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"UserJourneyId": "9bb818fa-3cee-4e9c-8ce5-2e3377dc5a84"
}
],
"ModuleSettings": [
{
"Id": "77b59617-ccbd-4ac2-bdb9-5bcfe763d881",
"Name": "sample string 2",
"Url": "sample string 3",
"DisplayName": "sample string 4",
"ServiceType": 0,
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"TenantId": "10748057-dae2-44f1-ac39-3889f52d116a",
"UserJourneyId": "de15018b-7ebb-4776-b732-5393179adebc",
"Bypassable": true,
"DefaultValue": "sample string 9",
"SortIndex": 10,
"ModuleSettingProperties": [
{
"Id": "7300a927-ad41-4e0b-916e-f91b5db8e12d",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"ModuleSettingId": "9cf2d235-003b-414d-834e-498fecd11285"
},
{
"Id": "7300a927-ad41-4e0b-916e-f91b5db8e12d",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"ModuleSettingId": "9cf2d235-003b-414d-834e-498fecd11285"
}
]
},
{
"Id": "77b59617-ccbd-4ac2-bdb9-5bcfe763d881",
"Name": "sample string 2",
"Url": "sample string 3",
"DisplayName": "sample string 4",
"ServiceType": 0,
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"TenantId": "10748057-dae2-44f1-ac39-3889f52d116a",
"UserJourneyId": "de15018b-7ebb-4776-b732-5393179adebc",
"Bypassable": true,
"DefaultValue": "sample string 9",
"SortIndex": 10,
"ModuleSettingProperties": [
{
"Id": "7300a927-ad41-4e0b-916e-f91b5db8e12d",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"ModuleSettingId": "9cf2d235-003b-414d-834e-498fecd11285"
},
{
"Id": "7300a927-ad41-4e0b-916e-f91b5db8e12d",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:27:04.9933465+00:00",
"ModuleSettingId": "9cf2d235-003b-414d-834e-498fecd11285"
}
]
}
]
}
application/xml, text/xml
Sample:
<UserJourneyDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models">
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<DisplayName>sample string 3</DisplayName>
<Id>1a9a8aab-4b0f-419f-a024-516ebe9db281</Id>
<ModuleSettings>
<ModuleSettingDto>
<Bypassable>true</Bypassable>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<DefaultValue>sample string 9</DefaultValue>
<DisplayName>sample string 4</DisplayName>
<Id>77b59617-ccbd-4ac2-bdb9-5bcfe763d881</Id>
<ModuleSettingProperties>
<ModuleSettingPropertyDto>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<Id>7300a927-ad41-4e0b-916e-f91b5db8e12d</Id>
<ModuleSettingId>9cf2d235-003b-414d-834e-498fecd11285</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
<ModuleSettingPropertyDto>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<Id>7300a927-ad41-4e0b-916e-f91b5db8e12d</Id>
<ModuleSettingId>9cf2d235-003b-414d-834e-498fecd11285</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
</ModuleSettingProperties>
<Name>sample string 2</Name>
<ServiceType>None</ServiceType>
<SortIndex>10</SortIndex>
<TenantId>10748057-dae2-44f1-ac39-3889f52d116a</TenantId>
<Url>sample string 3</Url>
<UserJourneyId>de15018b-7ebb-4776-b732-5393179adebc</UserJourneyId>
</ModuleSettingDto>
<ModuleSettingDto>
<Bypassable>true</Bypassable>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<DefaultValue>sample string 9</DefaultValue>
<DisplayName>sample string 4</DisplayName>
<Id>77b59617-ccbd-4ac2-bdb9-5bcfe763d881</Id>
<ModuleSettingProperties>
<ModuleSettingPropertyDto>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<Id>7300a927-ad41-4e0b-916e-f91b5db8e12d</Id>
<ModuleSettingId>9cf2d235-003b-414d-834e-498fecd11285</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
<ModuleSettingPropertyDto>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<Id>7300a927-ad41-4e0b-916e-f91b5db8e12d</Id>
<ModuleSettingId>9cf2d235-003b-414d-834e-498fecd11285</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
</ModuleSettingProperties>
<Name>sample string 2</Name>
<ServiceType>None</ServiceType>
<SortIndex>10</SortIndex>
<TenantId>10748057-dae2-44f1-ac39-3889f52d116a</TenantId>
<Url>sample string 3</Url>
<UserJourneyId>de15018b-7ebb-4776-b732-5393179adebc</UserJourneyId>
</ModuleSettingDto>
</ModuleSettings>
<Name>sample string 2</Name>
<SortIndex>6</SortIndex>
<TenantId>87cfa96c-c12f-468b-96e1-2e89846c4f4c</TenantId>
<Type>UserJourney</Type>
<UserJourneyProperties>
<UserJourneyPropertyDto>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<Id>ae2e2d53-ee89-46f4-852e-1bd1877264cb</Id>
<Name>sample string 2</Name>
<UserJourneyId>9bb818fa-3cee-4e9c-8ce5-2e3377dc5a84</UserJourneyId>
<Value>sample string 3</Value>
</UserJourneyPropertyDto>
<UserJourneyPropertyDto>
<CreationDate>2026-01-11T20:27:04.9933465+00:00</CreationDate>
<Id>ae2e2d53-ee89-46f4-852e-1bd1877264cb</Id>
<Name>sample string 2</Name>
<UserJourneyId>9bb818fa-3cee-4e9c-8ce5-2e3377dc5a84</UserJourneyId>
<Value>sample string 3</Value>
</UserJourneyPropertyDto>
</UserJourneyProperties>
</UserJourneyDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.