POST api/RequestDemo/SaveRequestedDemo
Request Information
URI Parameters
None.
Body Parameters
RequestDemoDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| ContactNo | string |
None. |
|
| EmailId | string |
None. |
|
| Represent | integer |
None. |
|
| Active | boolean |
None. |
|
| Description | string |
None. |
|
| CreatedDate | date |
None. |
|
| DemoStatus | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"ContactNo": "sample string 4",
"EmailId": "sample string 5",
"Represent": 1,
"Active": true,
"Description": "sample string 6",
"CreatedDate": "2026-04-22T15:59:01.7933947+05:30",
"DemoStatus": true
}
application/xml, text/xml
Sample:
<RequestDemoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Parihaar.Models"> <Active>true</Active> <ContactNo>sample string 4</ContactNo> <CreatedDate>2026-04-22T15:59:01.7933947+05:30</CreatedDate> <DemoStatus>true</DemoStatus> <Description>sample string 6</Description> <EmailId>sample string 5</EmailId> <FirstName>sample string 2</FirstName> <Id>1</Id> <LastName>sample string 3</LastName> <Represent>1</Represent> </RequestDemoDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |