v3 API//
- Add a new Email Inbox
Update an existing Email Inbox
Delete an 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
Add a new Email Inbox
POST /v3/email-inboxes
Add a new Email Inbox
Security
API_Key
POST
curl -i -X POST \
https://api.observepoint.com/v3/email-inboxes \
-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
}'Successful operation
The email address that has been assigned to the inbox
Example:"scanTest+<8^[a-z0-9]>@email.observepoint.com"
Response
{ "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 }