GET api/pcconfigapi/pcconfig/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

PcConfigViewModel
NameDescriptionTypeAdditional 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": "e8d70cfd-956a-4764-86eb-4c5ab39b7553",
  "key": "552d4eaf-b2c1-446d-83d6-18d78a99b6a9",
  "pc_id": "f8ed6ec5-b5ca-4345-9578-fc8b000a72d7",
  "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>e8d70cfd-956a-4764-86eb-4c5ab39b7553</id>
  <key>552d4eaf-b2c1-446d-83d6-18d78a99b6a9</key>
  <pc_id>f8ed6ec5-b5ca-4345-9578-fc8b000a72d7</pc_id>
  <value>sample string 3</value>
</pc_config>