POST api/sendNotification

Request Information

URI Parameters

None.

Body Parameters

NotifyModel
NameDescriptionTypeAdditional information
title

string

None.

message

string

None.

htmlBody

string

None.

employees

string

None.

userId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "title": "sample string 1",
  "message": "sample string 2",
  "htmlBody": "sample string 3",
  "employees": "sample string 4",
  "userId": "sample string 5"
}

application/xml, text/xml

Sample:
<NotifyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPISolution.Models.EmployeeMaster">
  <employees>sample string 4</employees>
  <htmlBody>sample string 3</htmlBody>
  <message>sample string 2</message>
  <title>sample string 1</title>
  <userId>sample string 5</userId>
</NotifyModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />