POST api/Inquiry/ManageInquiries

Request Information

URI Parameters

None.

Body Parameters

Inquiry
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

Email

string

None.

Subject

string

None.

Message

string

None.

CreateDate

date

None.

IsRead

boolean

None.

IsSaved

boolean

None.

IsReply

boolean

None.

RepliedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Email": "sample string 3",
  "Subject": "sample string 4",
  "Message": "sample string 5",
  "CreateDate": "2026-07-24T13:12:59.6559285+00:00",
  "IsRead": true,
  "IsSaved": true,
  "IsReply": true,
  "RepliedOn": "2026-07-24T13:12:59.6559285+00:00"
}

application/xml, text/xml

Sample:
<Inquiry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL.Model">
  <CreateDate>2026-07-24T13:12:59.6559285+00:00</CreateDate>
  <Email>sample string 3</Email>
  <ID>1</ID>
  <IsRead>true</IsRead>
  <IsReply>true</IsReply>
  <IsSaved>true</IsSaved>
  <Message>sample string 5</Message>
  <Name>sample string 2</Name>
  <RepliedOn>2026-07-24T13:12:59.6559285+00:00</RepliedOn>
  <Subject>sample string 4</Subject>
</Inquiry>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Inquiry'.

Response Information

Resource Description

APIResponse
NameDescriptionTypeAdditional information
Message

string

None.

Data

Object

None.

Count

integer

None.

Activity

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Data": {},
  "Count": 3,
  "Activity": "sample string 4"
}

application/xml, text/xml

Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL.BO">
  <Activity>sample string 4</Activity>
  <Count>3</Count>
  <Data />
  <Message>sample string 1</Message>
</APIResponse>