notifications
Create a notification
All notifications created through the API will be of notification type API_NOTIFICATION, channel PUSH, and will not be associated to an entity. No other channels are supported. This will only have an effect for clients using an MX mobile application.
post/users/{user_guid}/notifications
Query parameters
contentstring required
The information related to the notification.
subjectstring required
The subject related to the notification.
Response
OK
Example response
{
"notification": {
"guid": "TF-b53294f5-2356-4782-9f81-ae064c42b40a",
"content": "The content related to the notification.",
"deep_link_guid": "BGT-e386a323-e452-47f2-b2fd-1ac3c18533de",
"entity_guid": "BGT-e386a323-e452-47f2-b2fd-1ac3c18533de",
"has_been_delivered": true,
"notification_type": 2,
"subject": "You're projected to spend $1,920.07 more than you've budgeted for Fees & Charges. You've already spent $65.67 of $316.00.",
"channel": "push"
}
}