Notification Service Features #101
-
We are in the need of notification service to send notifications on specific events like course creation, course completion etc.. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@gysenthil Will check and share the details soon |
Beta Was this translation helpful? Give feedback.
@gysenthil Please try with below request:
{
"request": {
"mode": "test",
"body": "if mode SMS then complete body will go as sms to that recipientUserIds",
"emailTemplateType": "defaultCertTemp",
"subject": "Course completion certificate",
"stateImgUrl": "https://test.com/img/File-0128212938260643843.png",
"firstName": "name of user",
"TraningName": "name of attended traning",
"heldDate": "traning held date (25-08-2019)",
"pdfUrl": "https://test.com/img/File-0128231581485547521.pdf",
"regardsperson": "Chairperson",
"regards": "Director",
"recipientEmails": [
"[email protected]"
]
}
}
To integrate in other services, if it is a sync call, then you can directly call this API from that service. If…