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//
- Delete an Email Inbox
Add a new Email Inbox
Update an existing Email Inbox
Associate audit configurations with an existing Email Inbox
Associate an audit configuration with an existing Email Inbox
Delete an audit configuration from an Email Inbox
Upsert labels for an existing Email Inbox
Upsert notes for the given Email Inbox
Cancel all audit runs associated with a given Email Message
Delete an Email Inbox
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
Bodyapplication/jsonrequired
Update an existent Email Inbox
The ids of the labels to be associated to the Email Inbox
Example: [223]
- ObservePoint Production APIhttps://api.observepoint.com/v3/email-inboxes/{emailInboxId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v3/email-inboxes/{emailInboxId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "Adove Campaign Holidays, Marketing Department",
"notes": "string",
"labelIds": [
223
],
"subscribers": {
"onReceived": [
"string"
],
"onProcessed": [
"string"
]
},
"linkExclusionFilters": [
"string"
],
"omitSocialLinks": true
}'Response
application/json
{ "id": 10, "labelIds": [ 223 ], "name": "Christmas Marketing Campaign", "emailAddress": "scanTest+<8^[a-z0-9]>@email.observepoint.com", "notes": "string", "subscribers": { "onReceived": [ … ], "onProcessed": [ … ] }, "linkExclusionFilters": [ "string" ], "omitSocialLinks": true }
- ObservePoint Production APIhttps://api.observepoint.com/v3/email-inboxes/{emailInboxId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v3/email-inboxes/{emailInboxId}' \
-H 'Authorization: YOUR_API_KEY_HERE'- ObservePoint Production APIhttps://api.observepoint.com/v3/email-inboxes/{emailInboxId}/audit-configurations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v3/email-inboxes/{emailInboxId}/audit-configurations' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '[
107239
]'