POST api/APIAuth/AddInquiryDetail
Request Information
URI Parameters
None.
Body Parameters
InquiryBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| CountryId | integer |
None. |
|
| Message | string |
None. |
|
| TypesOfForm | integer |
None. |
|
| CompanyName | string |
None. |
|
| Mobile | string |
None. |
|
| InquiryDate | date |
None. |
|
| Created_date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"Email": "sample string 3",
"CountryId": 4,
"Message": "sample string 5",
"TypesOfForm": 6,
"CompanyName": "sample string 7",
"Mobile": "sample string 8",
"InquiryDate": "2026-01-10T13:09:04.1727517+05:30",
"Created_date": "2026-01-10T13:09:04.1727517+05:30"
}
application/xml, text/xml
Sample:
<InquiryBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infovores.Models"> <CompanyName>sample string 7</CompanyName> <CountryId>4</CountryId> <Created_date>2026-01-10T13:09:04.1727517+05:30</Created_date> <Email>sample string 3</Email> <FirstName>sample string 1</FirstName> <InquiryDate>2026-01-10T13:09:04.1727517+05:30</InquiryDate> <LastName>sample string 2</LastName> <Message>sample string 5</Message> <Mobile>sample string 8</Mobile> <TypesOfForm>6</TypesOfForm> </InquiryBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | boolean |
None. |
|
| ReturnCode | integer |
None. |
|
| Message | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": true,
"ReturnCode": 2,
"Message": "sample string 3",
"Result": {}
}
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infovores.Models"> <Message>sample string 3</Message> <Response>true</Response> <Result /> <ReturnCode>2</ReturnCode> </ApiResult>