POST api/Notification/NotificationReply

Request Information

URI Parameters

None.

Body Parameters

NotificationReplyDTO
NameDescriptionTypeAdditional information
SendToUserId

Collection of string

Required

Description

string

Required

String length: inclusive between 2 and 250

ParentNotificationId

integer

Required

SentBy

string

Required

Request Formats

application/json, text/json

Sample:
{
  "sendToUserId": [
    "sample string 1",
    "sample string 2"
  ],
  "description": "sample string 1",
  "parentNotificationId": 2,
  "sentBy": "sample string 3"
}

application/xml, text/xml

Sample:
<NotificationReplyDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.DTO">
  <Description>sample string 1</Description>
  <ParentNotificationId>2</ParentNotificationId>
  <SendToUserId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </SendToUserId>
  <SentBy>sample string 3</SentBy>
</NotificationReplyDTO>

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.