GET api/v1/Get_ProjectConfigurationByProjectID?projectid={projectid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of projectconfiguration| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| utype | string |
None. |
|
| usize | string |
None. |
|
| uprice | string |
None. |
|
| uprice2 | string |
None. |
|
| uimage | string |
None. |
|
| projectid | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"utype": "sample string 2",
"usize": "sample string 3",
"uprice": "sample string 4",
"uprice2": "sample string 5",
"uimage": "sample string 6",
"projectid": 7
},
{
"id": 1,
"utype": "sample string 2",
"usize": "sample string 3",
"uprice": "sample string 4",
"uprice2": "sample string 5",
"uimage": "sample string 6",
"projectid": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfprojectconfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIBridge">
<projectconfiguration>
<id>1</id>
<projectid>7</projectid>
<uimage>sample string 6</uimage>
<uprice>sample string 4</uprice>
<uprice2>sample string 5</uprice2>
<usize>sample string 3</usize>
<utype>sample string 2</utype>
</projectconfiguration>
<projectconfiguration>
<id>1</id>
<projectid>7</projectid>
<uimage>sample string 6</uimage>
<uprice>sample string 4</uprice>
<uprice2>sample string 5</uprice2>
<usize>sample string 3</usize>
<utype>sample string 2</utype>
</projectconfiguration>
</ArrayOfprojectconfiguration>