Endpoints for managing tags and tag-related operations including tag metadata and configuration
- Create a manual journey run within the manualJourneyId based on uploaded har files.
V2 API
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.
Request
This endpoint provides the same functionality as DELETE /v2/manual-journeys/{manualJourneyId}. It exists to support browser sendBeacon() calls, which can only perform POST requests. This is used when users abruptly leave the live-connect page to ensure proper cleanup of the live-connect session (including stopping any ECS tasks associated with the run and removing the run from the database).
- https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/delete
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/delete' \
-H 'Authorization: YOUR_API_KEY_HERE'- https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/har-runs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/har-runs' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"harFiles": [
{
"name": "string",
"s3Key": "string"
}
],
"journeyRunName": "string",
"webhookUrl": "string"
}'- https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/labels
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/labels' \
-H 'Authorization: YOUR_API_KEY_HERE'