POST api/RealityCreateProject?db={db}&dbReality={dbReality}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| db | string |
Required |
|
| dbReality | string |
Required |
Body Parameters
RealityProject| Name | Description | Type | Additional information |
|---|---|---|---|
| project | string |
None. |
|
| modelname | string |
None. |
|
| client | string |
None. |
|
| xPos | string |
None. |
|
| yPos | string |
None. |
|
| startDate | string |
None. |
|
| endDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"project": "sample string 1",
"modelname": "sample string 2",
"client": "sample string 3",
"xPos": "sample string 4",
"yPos": "sample string 5",
"startDate": "sample string 6",
"endDate": "sample string 7"
}
text/xml
Sample:
<RealityProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Models.Reality"> <client>sample string 3</client> <endDate>sample string 7</endDate> <modelname>sample string 2</modelname> <project>sample string 1</project> <startDate>sample string 6</startDate> <xPos>sample string 4</xPos> <yPos>sample string 5</yPos> </RealityProject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>