Endpoints for managing rules including creation, configuration, assignment, and rule-based validation logic
v2 API//
- Delete label with given id
Get list of all labels
Create new label
Update existing label name
Delete label with given i...
V2 API
Download OpenAPI description
Languages
Servers
https://api.observepoint.com/v2/
- 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
[ { "alerts": [ … ], "apps": [ … ], "audits": [ … ], "consentCategories": [ … ], "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
{ "alerts": [ 0 ], "apps": [ 0 ], "audits": [ 0 ], "consentCategories": [ 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
{ "alerts": [ 0 ], "apps": [ 0 ], "audits": [ 0 ], "consentCategories": [ 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'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