POST api/Messages/Insert

Request Information

URI Parameters

None.

Body Parameters

MessagesInsertBindingModel
NameDescriptionTypeAdditional information
Status

byte

None.

CustomerId

integer

None.

FileNumber

string

None.

Message

string

None.

DesktopAppraiserIdSent

integer

None.

DateSent

date

Data type: DateTime

DesktopAppraiserIdReceive

Collection of unsigned integer

None.

TransactionId

string

String length: inclusive between 0 and 100

Request Formats

application/json, text/json

Sample:
{
  "Status": 64,
  "CustomerId": 1,
  "FileNumber": "sample string 1",
  "Message": "sample string 2",
  "DesktopAppraiserIdSent": 1,
  "DateSent": "2026-07-15T18:45:01.9476338+00:00",
  "DesktopAppraiserIdReceive": [
    1,
    2
  ],
  "TransactionId": "sample string 3"
}

application/xml, text/xml

Sample:
<MessagesInsertBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OmdanRestModels.Models.Binding_Models">
  <TransactionId>sample string 3</TransactionId>
  <CustomerId>1</CustomerId>
  <DateSent>2026-07-15T18:45:01.9476338+00:00</DateSent>
  <DesktopAppraiserIdReceive xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:unsignedInt>1</d2p1:unsignedInt>
    <d2p1:unsignedInt>2</d2p1:unsignedInt>
  </DesktopAppraiserIdReceive>
  <DesktopAppraiserIdSent>1</DesktopAppraiserIdSent>
  <FileNumber>sample string 1</FileNumber>
  <Message>sample string 2</Message>
  <Status>64</Status>
</MessagesInsertBindingModel>

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.