Skip to content

Update web journey notification configuration

Request

PUT /v3/web-journeys/{webJourneyId}/notificationconfig

Update or create notification settings for a web journey

Security
API_Key
Path
webJourneyIdinteger, (int64)required

Unique identification number for web journey item

Example:107239
Bodyapplication/jsonrequired

Notification configuration to update

emailsArray of strings

List of email addresses for notifications

alertsboolean

Whether alerts are enabled

webHookUrlstring

Webhook URL for notifications

PUT
/v3/web-journeys/{webJourneyId}/notificationconfig
curl -i -X PUT \
  https://api.observepoint.com/v3/web-journeys/107239/notificationconfig \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "emails": [
      "string"
    ],
    "alerts": true,
    "webHookUrl": "string"
  }'

Responses

Notification configuration updated successfully

Bodyapplication/json
emailsArray of strings

List of email addresses for notifications

alertsboolean

Whether alerts are enabled

webHookUrlstring

Webhook URL for notifications

Response
{ "emails": [ "string" ], "alerts": true, "webHookUrl": "string" }