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": "47ebebe9-60ff-44a6-8b82-0d0452804236",
"key": "68f45117-607c-4111-8b23-250e7cfbab79",
"pc_id": "37898a77-7d1c-4c19-926a-f14a9ba6dfbc",
"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>47ebebe9-60ff-44a6-8b82-0d0452804236</id> <key>68f45117-607c-4111-8b23-250e7cfbab79</key> <pc_id>37898a77-7d1c-4c19-926a-f14a9ba6dfbc</pc_id> <value>sample string 3</value> </pc_config>