This section documents the V3 API endpoints that provide access to comprehensive audit and journey data from ObservePoint. Use these endpoints to retrieve detailed reports, export data, manage alerts, configure scans and privacy settings, and analyze web performance metrics from your ObservePoint scans.
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com
- ObservePoint Production APIhttps://api.observepoint.com/v3/action-sets/{actionSetId}/actions/{actionId}/rules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/action-sets/{actionSetId}/actions/{actionId}/rules' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "id": 0, "name": "string", "accountId": 0, "createdBy": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "recipients": [ … ], "checkTimes": 0, "matchAllFilters": true, "pageFilters": [ … ], "tags": [ … ], "labels": [ … ], "fromTemplate": true } ]
Request
PUT /v3/action-sets/{actionSetId}/actions/{actionId}/rules
Update the rules for a specific action set and action with a new set of rule IDs
Security
API_Key
integer(int32)
- ObservePoint Production APIhttps://api.observepoint.com/v3/action-sets/{actionSetId}/actions/{actionId}/rules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v3/action-sets/{actionSetId}/actions/{actionId}/rules' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '[
0
]'Response
application/json
[ { "id": 0, "name": "string", "accountId": 0, "createdBy": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "recipients": [ … ], "checkTimes": 0, "matchAllFilters": true, "pageFilters": [ … ], "tags": [ … ], "labels": [ … ], "fromTemplate": true } ]