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": "e8578e42-6537-4960-9ad1-328e44dff23d",
"key": "e038d5b5-0158-467f-bf21-c94740d553d0",
"pc_id": "549b0acb-4cf6-499a-9a57-8b21305604c6",
"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>e8578e42-6537-4960-9ad1-328e44dff23d</id> <key>e038d5b5-0158-467f-bf21-c94740d553d0</key> <pc_id>549b0acb-4cf6-499a-9a57-8b21305604c6</pc_id> <value>sample string 3</value> </pc_config>