Endpoints for managing tags and tag-related operations including tag metadata and configuration
v2 API//
- Get web journeys for sub-folder with given id
Get list of all sub-folders
Create new sub-folder
Get sub-folder by id
Update sub-folder with given id
Delete sub-folder with given id
Get web audits for sub-folder with given id
Get web journeys for sub-...
V2 API
Download OpenAPI description
Languages
Servers
https://api.observepoint.com/v2/
- https://api.observepoint.com/v2/domains
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v2/domains \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "accountId": 0, "createdAt": "2019-08-24T14:15:22Z", "domain": "string", "folderId": 0, "id": 0, "name": "string", "totals": { … }, "userId": 0 } ]
- https://api.observepoint.com/v2/domains
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.observepoint.com/v2/domains \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"dataLayer": "string",
"domain": "string",
"folderId": 0,
"name": "string"
}'Response
application/json
{ "accountId": 0, "createdAt": "2019-08-24T14:15:22Z", "domain": "string", "folderId": 0, "id": 0, "name": "string", "totals": { "auditsRunning": 0, "automatedJourneys": 0, "averageScore": 0, "errors": 0, "guidedJourneys": 0, "pages": 0, "simulationsRunning": 0 }, "userId": 0 }
- https://api.observepoint.com/v2/domains/{domainId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/domains/{domainId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "accountId": 0, "createdAt": "2019-08-24T14:15:22Z", "domain": "string", "folderId": 0, "id": 0, "name": "string", "totals": { "auditsRunning": 0, "automatedJourneys": 0, "averageScore": 0, "errors": 0, "guidedJourneys": 0, "pages": 0, "simulationsRunning": 0 }, "userId": 0 }
- https://api.observepoint.com/v2/domains/{domainId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v2/domains/{domainId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"dataLayer": "string",
"domain": "string",
"folderId": 0,
"name": "string"
}'Response
application/json
{ "accountId": 0, "createdAt": "2019-08-24T14:15:22Z", "domain": "string", "folderId": 0, "id": 0, "name": "string", "totals": { "auditsRunning": 0, "automatedJourneys": 0, "averageScore": 0, "errors": 0, "guidedJourneys": 0, "pages": 0, "simulationsRunning": 0 }, "userId": 0 }
- https://api.observepoint.com/v2/domains/{domainId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v2/domains/{domainId}' \
-H 'Authorization: YOUR_API_KEY_HERE'- https://api.observepoint.com/v2/domains/{domainId}/web-audits
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/domains/{domainId}/web-audits?withRuns=true&runsLimit=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "created": "2019-08-24T14:15:22Z", "domainId": 0, "filters": { … }, "folderId": 0, "frequency": "string", "id": 0, "labels": [ … ], "lastRun": "2019-08-24T14:15:22Z", "lastUpdated": "2019-08-24T14:15:22Z", "limit": 0, "name": "string", "nextRun": "2019-08-24T14:15:22Z", "options": { … }, "ownerId": 0, "queued": true, "recipients": [ … ], "rules": [ … ], "runs": [ … ], "schedule": true, "screenshot": "string", "startingUrls": [ … ], "taggingPlans": [ … ], "webAuditRunning": 0 } ]
- https://api.observepoint.com/v2/domains/{domainId}/web-journeys
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/domains/{domainId}/web-journeys' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "actions": [ … ], "createdAt": "2019-08-24T14:15:22Z", "domainId": 0, "emails": [ … ], "folderId": 0, "id": 0, "lastCheck": "2019-08-24T14:15:22Z", "name": "string", "nextCheck": "2019-08-24T14:15:22Z", "options": { … }, "queued": true, "screenshot": "string", "status": "Ok", "userId": 0, "webJourneyRunning": true } ]
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