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 }