POST api/Notification

Request Information

URI Parameters

None.

Body Parameters

Notification
NameDescriptionTypeAdditional information
Id

integer

None.

UserId

integer

None.

Title

string

None.

Description

string

None.

IsRead

boolean

None.

AuditId

integer

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserId": 2,
  "Title": "sample string 3",
  "Description": "sample string 4",
  "IsRead": true,
  "AuditId": 6,
  "CreatedBy": 7,
  "LastModifiedBy": 1
}

application/xml, text/xml

Sample:
<Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IKimWebService.Domain">
  <CreatedBy>7</CreatedBy>
  <LastModifiedBy>1</LastModifiedBy>
  <AuditId>6</AuditId>
  <Description>sample string 4</Description>
  <Id>1</Id>
  <IsRead>true</IsRead>
  <Title>sample string 3</Title>
  <UserId>2</UserId>
</Notification>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.