Notification APIs manage and deliver real-time alerts, push notifications, and user messages. They support multiple channels for timely communication between the system and users.
Notification APIs (1.0.1)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://api-docs.ivalt.com/_mock/products/notification/notification_apis/
Development server
https://dev.api.ivalt.com/admin/public/api/
- Mock serverhttps://api-docs.ivalt.com/_mock/products/notification/notification_apis/send/global/notification
- Development serverhttps://dev.api.ivalt.com/admin/public/api/send/global/notification
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api-docs.ivalt.com/_mock/products/notification/notification_apis/send/global/notification \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"mobile": "+9162839xxxxx"
}'Response
application/json
{ "status": "success", "message": "Send global notification", "timestamp": "2025-09-22T09:35:00Z" }
- Mock serverhttps://api-docs.ivalt.com/_mock/products/notification/notification_apis/send-auth-request-by-email
- Development serverhttps://dev.api.ivalt.com/admin/public/api/send-auth-request-by-email
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api-docs.ivalt.com/_mock/products/notification/notification_apis/send-auth-request-by-email \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"email": "user@ivalt.com"
}'Response
application/json
{ "status": "success", "message": "Send authentication request by email", "timestamp": "2025-09-22T09:35:00Z" }
- Mock serverhttps://api-docs.ivalt.com/_mock/products/notification/notification_apis/send/app-auth/notification
- Development serverhttps://dev.api.ivalt.com/admin/public/api/send/app-auth/notification
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api-docs.ivalt.com/_mock/products/notification/notification_apis/send/app-auth/notification \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"request_to_mobile": "+9162839xxxxx",
"request_from_mobile": "+9178375xxxxx"
}'Response
application/json
{ "status": "success", "message": "Send app authentication notification", "timestamp": "2025-09-22T09:35:00Z" }