Endpoints for managing tags and tag-related operations including tag metadata and configuration
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/labels
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v2/labels \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "apps": [ … ], "audits": [ … ], "id": 0, "mobileJourney": [ … ], "name": "string", "rules": [ … ], "webJourney": [ … ] } ]
- https://api.observepoint.com/v2/labels
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.observepoint.com/v2/labels \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string"
}'Response
application/json
{ "apps": [ 0 ], "audits": [ 0 ], "id": 0, "mobileJourney": [ 0 ], "name": "string", "rules": [ 0 ], "webJourney": [ 0 ] }
- https://api.observepoint.com/v2/labels/{labelId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v2/labels/{labelId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string"
}'Response
application/json
{ "apps": [ 0 ], "audits": [ 0 ], "id": 0, "mobileJourney": [ 0 ], "name": "string", "rules": [ 0 ], "webJourney": [ 0 ] }
- https://api.observepoint.com/v2/labels/{labelId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v2/labels/{labelId}' \
-H 'Authorization: YOUR_API_KEY_HERE'