Endpoints for managing tags and tag-related operations including tag metadata and configuration
v2 API//
- Reset request filters for specified manual journey run
Get all manual journeys
Create new manual journey
Get default certificate metadata
Get manual journey
Initialize manual journey run
Update manual journey
Delete manual journey
Delete manual journey via POST request
Create a manual journey run within the manualJourneyId based on uploaded har files.
Get manual journey labels
Update manual journey labels
Delete manual journey label
Get manual journey rules
Update manual journey rules
Get all available manual journey runs
Get specified manual journey run
Delete manual journey run
Create new action in specified manual journey run
Get specified manual journey run action
Deletes specified manual journey run action
Manual journey run control request
Get manual journey run labels
Update manual journey run labels
Delete manual journey run label
Get request filters of specified manual journey run
Set request filters for specified manual journey run
Get request logs of specified manual journey run
Get tags of specified manual journey run
Reset request filters for...
V2 API
Download OpenAPI description
Languages
Servers
https://api.observepoint.com/v2/
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.
Operations
- https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/runs/{runId}/request-filters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/runs/{runId}/request-filters' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"empty": true,
"traversableAgain": true
}'- https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/runs/{runId}/request-filters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/runs/{runId}/request-filters' \
-H 'Authorization: YOUR_API_KEY_HERE'- https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/runs/{runId}/request-logs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/manual-journeys/{manualJourneyId}/runs/{runId}/request-logs' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"limit": 0,
"offset": 0
}'Response
application/json
[ { "enabledSsl": true, "id": "string", "journeyTagIds": [ … ], "requestInfo": [ … ], "requestLog": "string", "responseInfo": [ … ], "stepId": 0, "timestamp": 0 } ]