POST api/notification/Send h1>

Request Information

URI Parameters

None.

Body Parameters

DtoSendNotification
NameDescriptionTypeAdditional information
UserId

integer

None.

Title

string

None.

Message

string

None.

Type

string

None.

SentBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "Title": "sample string 2",
  "Message": "sample string 3",
  "Type": "sample string 4",
  "SentBy": "sample string 5"
}

application/xml, text/xml

Sample:
<DtoSendNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Icodex.UserManagement.Services.Interfaces.Request.Dto.Notification">
  <Message>sample string 3</Message>
  <SentBy>sample string 5</SentBy>
  <Title>sample string 2</Title>
  <Type>sample string 4</Type>
  <UserId>1</UserId>
</DtoSendNotification>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.