- Get web journey action by ID
Retrieve a specific action by its ID within a web journey
curl -i -X GET \
https://api.observepoint.com/v3/web-journeys/107239/actions/1001 \
-H 'Authorization: YOUR_API_KEY_HERE'Web journey action retrieved successfully
Type of the user action
Duration to wait in milliseconds. Present for actionTypes: navTo, click, input, select, check, uncheck, execute, watch, maskedInput, enterIFrame, exitIFrame, clearCookies, privacyOptIn, privacyOptOut
List of selectors for element-based actions. Present for actionTypes: click, input, select, check, uncheck, maskedInput, enterIFrame
Value field with different meanings per actionType. For input/select: input value. For navTo: URL. For privacyOptIn/privacyOptOut: URL. For execute: JavaScript code. Present for actionTypes: input, select, navTo, privacyOptIn, privacyOptOut, execute
URL for navigation and privacy actions. Present for actionTypes: navTo, privacyOptIn, privacyOptOut
Whether privacy action is required. Present for actionTypes: privacyOptIn, privacyOptOut
ID of the action set this action belongs to. For actionType 'actionSet', this contains the referenced action set ID
{ "sequence": 0, "id": 0, "description": "string", "actionType": "click", "waitDuration": 0, "selectors": [ { … } ], "preventNavigation": true, "value": "string", "maskedValue": "string", "js": "string", "url": "string", "seconds": 0, "isRequired": true, "actionSetId": 0, "pageFilter": "string" }