v3 API//
- Update an existing Email Inbox
Add a new 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
Update an existing Email...
PUT /v3/email-inboxes/{emailInboxId}
Update an existing Email Inbox by Id
Security
API_Key
PUT
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
}'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 }