API for iblai
API Reference//
- Validate notification source
notification_v1_campaigns_unsubscribe_retrieve
notification_v1_orgs_notifications_retrieve
notification_v1_orgs_notifications_update
notification_v1_orgs_notifications_bulk_update_partial_update
notification_v1_orgs_users_notifications_retrieve
notification_v1_orgs_users_notifications_update
notification_v1_orgs_users_notifications_count_retrieve
notification_v1_orgs_users_notifications_destroy
notification_v1_orgs_users_notifications_bulk_update_partial_update
notification_v1_orgs_users_register_fcm_token_create
notification_v1_orgs_users_register_fcm_token_destroy
notification_v1_orgs_users_send_notification_create
notification_v1_orgs_campaigns_enable_create
notification_v1_orgs_campaigns_exclude_create
notification_v1_orgs_mark_all_as_read_create
Get build recipients
Get notification context data
Preview notification
Send notification
Test SMTP credentials for a platform
List notification templates
Get notification template details
Update notification template
Reset template to default
Send test notification
Toggle notification preference
Validate notification sou...
ibl-data-manager (4.84.1-ai-plus)
- Mock serverhttps://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"
}'Response
application/json
{ "status": "string", "notifications_sent": 0, "build_id": "bfb1f3fa-bf7b-43a5-9e0b-26cc050e44cb", "message": "string" }
Body
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
email- emailusername- usernameplatform- platformcsv- csvdepartment- departmentpathway- pathwayprogram- program
Enum"email""username""platform""csv""department""pathway""program"
- Mock serverhttps://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
}'Response
application/json
{ "status": "string", "valid_count": 0, "invalid_entries": [ "string" ], "sample_recipients": [ { … } ] }
Body
- application/json
- application/scim+json
- application/x-www-form-urlencoded
- multipart/form-data
- */*
- Mock serverhttps://docs.ibl.ai/_mock/apis/ibl/api/notification/v1/platforms/{platform_key}/config/test-smtp/
- https://base.manager.iblai.app/api/notification/v1/platforms/{platform_key}/config/test-smtp/
- 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/platforms/{platform_key}/config/test-smtp/' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"smtp_host": "string",
"smtp_port": 1,
"smtp_username": "string",
"smtp_password": "string",
"use_tls": true,
"use_ssl": false,
"test_email": "user@example.com",
"from_email": "user@example.com"
}'Response
application/json
{ "status": "string", "message": "string", "success": true }