POST api/Notifications/Save

Request Information

URI Parameters

None.

Body Parameters

Notification
NameDescriptionTypeAdditional information
Id

string

None.

Recipient

string

None.

Subject

string

None.

Body

string

None.

SendDate

date

None.

LinkedCompanyId

string

None.

LinkedCompanyName

string

None.

Sent

boolean

None.

TryCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "recipient": "sample string 2",
  "subject": "sample string 3",
  "body": "sample string 4",
  "sendDate": "2024-09-28T01:55:25.3736763+00:00",
  "linkedCompanyId": "sample string 6",
  "linkedCompanyName": "sample string 7",
  "sent": true,
  "tryCount": 9
}

application/xml, text/xml

Sample:
<Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InstallerDb.Core.Models">
  <Body>sample string 4</Body>
  <Id>sample string 1</Id>
  <LinkedCompanyId>sample string 6</LinkedCompanyId>
  <LinkedCompanyName>sample string 7</LinkedCompanyName>
  <Recipient>sample string 2</Recipient>
  <SendDate>2024-09-28T01:55:25.3736763+00:00</SendDate>
  <Sent>true</Sent>
  <Subject>sample string 3</Subject>
  <TryCount>9</TryCount>
</Notification>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Notification
NameDescriptionTypeAdditional information
Id

string

None.

Recipient

string

None.

Subject

string

None.

Body

string

None.

SendDate

date

None.

LinkedCompanyId

string

None.

LinkedCompanyName

string

None.

Sent

boolean

None.

TryCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "recipient": "sample string 2",
  "subject": "sample string 3",
  "body": "sample string 4",
  "sendDate": "2024-09-28T01:55:25.390665+00:00",
  "linkedCompanyId": "sample string 6",
  "linkedCompanyName": "sample string 7",
  "sent": true,
  "tryCount": 9
}

application/xml, text/xml

Sample:
<Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InstallerDb.Core.Models">
  <Body>sample string 4</Body>
  <Id>sample string 1</Id>
  <LinkedCompanyId>sample string 6</LinkedCompanyId>
  <LinkedCompanyName>sample string 7</LinkedCompanyName>
  <Recipient>sample string 2</Recipient>
  <SendDate>2024-09-28T01:55:25.390665+00:00</SendDate>
  <Sent>true</Sent>
  <Subject>sample string 3</Subject>
  <TryCount>9</TryCount>
</Notification>