POST v1/Notification/Send
Request Information
URI Parameters
None.
Body Parameters
NotificationViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid | globally unique identifier |
None. |
|
| Topic | string |
None. |
|
| Title | string |
None. |
|
| Body | string |
None. |
|
| EventGuid | globally unique identifier |
None. |
|
| SendDT | date |
None. |
|
| IsSent | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Guid": "4e5e5280-334d-4d91-9668-fb813a2f0e0a",
"Topic": "sample string 1",
"Title": "sample string 2",
"Body": "sample string 3",
"EventGuid": "d678a0a9-a5b0-412d-b2fe-fe3edf2a6415",
"SendDT": "2026-01-21T18:44:16.9918323+00:00",
"IsSent": true
}
application/octet-stream
Sample:
{"Guid":"4e5e5280-334d-4d91-9668-fb813a2f0e0a","Topic":"sample string 1","Title":"sample string 2","Body":"sample string 3","EventGuid":"d678a0a9-a5b0-412d-b2fe-fe3edf2a6415","SendDT":"2026-01-21T18:44:16.9918323+00:00","IsSent":true}
application/xml, text/xml
Sample:
<NotificationViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.Core"> <Body>sample string 3</Body> <EventGuid>d678a0a9-a5b0-412d-b2fe-fe3edf2a6415</EventGuid> <Guid>4e5e5280-334d-4d91-9668-fb813a2f0e0a</Guid> <IsSent>true</IsSent> <SendDT>2026-01-21T18:44:16.9918323+00:00</SendDT> <Title>sample string 2</Title> <Topic>sample string 1</Topic> </NotificationViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/octet-stream, application/xml, text/xml
Sample:
Sample not available.