GET api/pcconfigapi/pcconfig/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PcConfigViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| id | globally unique identifier |
None. |
|
| key | globally unique identifier |
Required |
|
| pc_id | globally unique identifier |
Required |
|
| value | string |
String length: inclusive between 0 and 500 |
Response Formats
application/json, text/json
Sample:
{
"active": true,
"id": "f992a7f0-5de6-4541-8e41-0ac578b65f29",
"key": "b56ed75d-36a6-4f14-ab17-dd945429993c",
"pc_id": "32abd4fd-433f-4e4c-b6a5-893f0330f821",
"value": "sample string 3"
}
application/xml, text/xml
Sample:
<pc_config xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <id>f992a7f0-5de6-4541-8e41-0ac578b65f29</id> <key>b56ed75d-36a6-4f14-ab17-dd945429993c</key> <pc_id>32abd4fd-433f-4e4c-b6a5-893f0330f821</pc_id> <value>sample string 3</value> </pc_config>