POST api/Notifications/sendInternalNotification

Request Information

URI Parameters

None.

Body Parameters

InternalNotificationVM
NameDescriptionTypeAdditional information
department

string

None.

title

string

None.

body

string

None.

document_id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "department": "sample string 1",
  "title": "sample string 2",
  "body": "sample string 3",
  "document_id": 1
}

application/xml, text/xml

Sample:
<InternalNotificationVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RBCT.Core.ViewModels">
  <body>sample string 3</body>
  <department>sample string 1</department>
  <document_id>1</document_id>
  <title>sample string 2</title>
</InternalNotificationVM>

multipart/form-data

Sample:
<InternalNotificationVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RBCT.Core.ViewModels"><body>sample string 3</body><department>sample string 1</department><document_id>1</document_id><title>sample string 2</title></InternalNotificationVM>

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, multipart/form-data

Sample:

Sample not available.