Skip to content

Get emails subscribed to given items

Request

POST /v3/notification-center/emails
Security
API_Key
Bodyapplication/jsonrequired
itemTypestringrequired
Value:"AUDIT"
itemIdsArray of integers, non-emptyrequired

Non-empty array of item IDs. Emails for selected items only will be shown

POST
/v3/notification-center/emails
curl -i -X POST \
  https://api.observepoint.com/v3/notification-center/emails \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "itemType": "AUDIT",
    "itemIds": [
      107239
    ]
  }'

Responses

List of emails subscribed to given items that accessible by user

Bodyapplication/json
emailsArray of objects, >= 0 itemsrequired
Response
{ "emails": [ {} ] }