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": "456422fb-bcb9-4ece-b605-7ac40a179a75",
"key": "66cdd81c-163a-451f-b904-eaf046fc6ca7",
"pc_id": "c1ca4ea8-7985-4232-be88-48efacb4012e",
"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>456422fb-bcb9-4ece-b605-7ac40a179a75</id> <key>66cdd81c-163a-451f-b904-eaf046fc6ca7</key> <pc_id>c1ca4ea8-7985-4232-be88-48efacb4012e</pc_id> <value>sample string 3</value> </pc_config>