ibl-data-manager (3.59.0-ai-plus)
API for iblai
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
Specify this to send a new custom message without using a predefined template
Specify the sources to send notifications to
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/orgs/{platform_key}/notification-builder/preview/
https://base.manager.iblai.app/api/notification/v1/orgs/{platform_key}/notification-builder/preview/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/orgs/{platform_key}/notification-builder/preview/' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"template_id": "c6d67e98-83ea-49f0-8812-e4abae2b68bc",
"template_data": {
"message_title": "",
"message_body": "string"
},
"channels": [
0
],
"sources": [
{
"type": "email",
"data": null
}
],
"context": {
"property1": null,
"property2": null
},
"process_on": "2019-08-24T14:15:22Z"
}'
{ "status": "string", "build_id": "bfb1f3fa-bf7b-43a5-9e0b-26cc050e44cb", "count": 0, "warning": "string", "recipients": [ { … } ] }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/orgs/{platform_key}/notification-builder/send/
https://base.manager.iblai.app/api/notification/v1/orgs/{platform_key}/notification-builder/send/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/orgs/{platform_key}/notification-builder/send/' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"build_id": "string"
}'
{ "status": "string", "notifications_sent": 0, "build_id": "bfb1f3fa-bf7b-43a5-9e0b-26cc050e44cb", "message": "string" }
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
email
- emailusername
- usernameplatform
- platformcsv
- csvdepartment
- departmentpathway
- pathwayprogram
- program
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/orgs/{platform_key}/notification-builder/validate_source/
https://base.manager.iblai.app/api/notification/v1/orgs/{platform_key}/notification-builder/validate_source/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/orgs/{platform_key}/notification-builder/validate_source/' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"type": "email",
"data": null
}'
{ "status": "string", "valid_count": 0, "invalid_entries": [ "string" ], "sample_recipients": [ { … } ] }