Skip to content

Manual Journeys

Endpoints for managing manual journeys including real device testing, HAR file ingestion, and journey execution control. These endpoints power Live Connect and HAR Analyzer features in the ObservePoint UI, enabling users to perform manual testing on real devices and analyze HAR files for tag validation and troubleshooting.

For more information, see the HAR File Processing API Recipe.

Get all manual journeys

Request

GET /v2/manual-journeys
Security
API_Key
Bodyapplication/json
emptybooleanrequired
traversableAgainbooleanrequired
GET
/manual-journeys
curl -i -X GET \
  https://api.observepoint.com/v2/manual-journeys \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "empty": true,
    "traversableAgain": true
  }'

Responses

successful operation

Bodyapplication/json
Array [
createdAtstring, (date-time)required
emailsArray of stringsrequired
folderIdinteger, (int32)required
idinteger, (int32)required
journeyTypeinteger, (int32)
labelsArray of objects
namestringrequired
osOfDevicestringrequired
updatedAtstring, (date-time)required
userIdinteger, (int32)required
versionOfOsstringrequired
]
Response
[ { "createdAt": "2019-08-24T14:15:22Z", "emails": [], "folderId": 0, "id": 0, "journeyType": 0, "labels": [], "name": "string", "osOfDevice": "string", "updatedAt": "2019-08-24T14:15:22Z", "userId": 0, "versionOfOs": "string" } ]