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": "793d60c5-82da-48e3-8bf9-6853bcceb763",
"key": "2e18dee3-6351-453f-8e43-c7c4189a4bc6",
"pc_id": "aa33dd55-fba9-41bf-9a0d-a5d327b3e8b5",
"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>793d60c5-82da-48e3-8bf9-6853bcceb763</id> <key>2e18dee3-6351-453f-8e43-c7c4189a4bc6</key> <pc_id>aa33dd55-fba9-41bf-9a0d-a5d327b3e8b5</pc_id> <value>sample string 3</value> </pc_config>