Endpoints for managing tags and tag-related operations including tag metadata and configuration
v2 API//
- Update user data by given userId.Accessible only for admin users or if {userId} equal to current user id
Return all users for current user account.
Create new user.Accessible only for admin users
Return user data by given id. Accessible only for admin users or if {userId} equal to current user id
Delete user by given id. Accessible only for admin users
Return folders list shared with user by given id. Accessible only for admin users or if {userId} equal to current user id
Add given folders as shared for user with given userId.Accessible only for admin users
Set given folders as shared for user with given userId. Accessible only for admin users
Update user data by given...
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/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/users?withDeleted=false' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "accountId": 0, "created": "2019-08-24T14:15:22Z", "deleted": "string", "email": "string", "firstName": "string", "fullUsageDashboardAccess": true, "id": 0, "lastLogin": "2019-08-24T14:15:22Z", "lastName": "string", "maxPagesPerAudit": 0, "permissions": "guest", "timezone": "string", "updated": "2019-08-24T14:15:22Z", "username": "string" } ]
- https://api.observepoint.com/v2/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.observepoint.com/v2/users \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"email": "string",
"firstName": "string",
"fullUsageDashboardAccess": 0,
"lastName": "string",
"maxPagesPerAudit": 0,
"permissions": "guest",
"timezone": "string",
"username": "string"
}'Response
application/json
{ "accountId": 0, "created": "2019-08-24T14:15:22Z", "deleted": "string", "email": "string", "firstName": "string", "fullUsageDashboardAccess": true, "id": 0, "lastLogin": "2019-08-24T14:15:22Z", "lastName": "string", "maxPagesPerAudit": 0, "permissions": "guest", "timezone": "string", "updated": "2019-08-24T14:15:22Z", "username": "string" }
- https://api.observepoint.com/v2/users/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/users/{userId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "accountId": 0, "created": "2019-08-24T14:15:22Z", "deleted": "string", "email": "string", "firstName": "string", "fullUsageDashboardAccess": true, "id": 0, "lastLogin": "2019-08-24T14:15:22Z", "lastName": "string", "maxPagesPerAudit": 0, "permissions": "guest", "timezone": "string", "updated": "2019-08-24T14:15:22Z", "username": "string" }
- https://api.observepoint.com/v2/users/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v2/users/{userId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"email": "string",
"firstName": "string",
"fullUsageDashboardAccess": 0,
"lastName": "string",
"maxPagesPerAudit": 0,
"permissions": "guest",
"timezone": "string",
"username": "string"
}'Response
application/json
{ "accountId": 0, "created": "2019-08-24T14:15:22Z", "deleted": "string", "email": "string", "firstName": "string", "fullUsageDashboardAccess": true, "id": 0, "lastLogin": "2019-08-24T14:15:22Z", "lastName": "string", "maxPagesPerAudit": 0, "permissions": "guest", "timezone": "string", "updated": "2019-08-24T14:15:22Z", "username": "string" }
- https://api.observepoint.com/v2/users/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v2/users/{userId}' \
-H 'Authorization: YOUR_API_KEY_HERE'- https://api.observepoint.com/v2/users/{userId}/folders
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v2/users/{userId}/folders' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "accountId": 0, "id": 0, "name": "string" } ]
- https://api.observepoint.com/v2/users/{userId}/folders
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v2/users/{userId}/folders' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '[
0
]'Response
application/json
[ { "accountId": 0, "id": 0, "name": "string" } ]
- https://api.observepoint.com/v2/users/{userId}/folders
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v2/users/{userId}/folders' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '[
0
]'Response
application/json
[ { "accountId": 0, "id": 0, "name": "string" } ]