v3 API//
- Search assignable items (audits, journeys, rules etc) for specified email
Get all emails in an account
Get emails subscribed to given items
Search assignable items (...
POST /v3/notification-center/target-items/{itemType}/search
Security
API_Key
non-empty array of labels present on an item. When multiple labels specified, target item is expected to have all of them (condition works as "AND" for all labels specified)
POST
curl -i -X POST \
'https://api.observepoint.com/v3/notification-center/target-items/{itemType}/search?size=50&sortBy=IS_ASSIGNED&page=0&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"email": "string",
"itemName": "string",
"itemLabels": [
223
],
"isAssigned": true
}'Response
{ "metadata": { "pagination": { … } }, "items": [ { … } ] }