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": "1eef4986-f4d5-4556-910f-536924b1638c",
"key": "f4256672-7057-4b0e-87ec-3f8328e07ceb",
"pc_id": "f7b71332-6b9c-4ac0-bc04-72833b507e04",
"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>1eef4986-f4d5-4556-910f-536924b1638c</id> <key>f4256672-7057-4b0e-87ec-3f8328e07ceb</key> <pc_id>f7b71332-6b9c-4ac0-bc04-72833b507e04</pc_id> <value>sample string 3</value> </pc_config>