POST api/pcconfigapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
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 |
Request Formats
application/json, text/json
Sample:
{
"active": true,
"id": "b866554b-0552-4588-9de0-f2338073f987",
"key": "86be681f-1187-4ed5-96e4-cd3799c8084f",
"pc_id": "f7aa8643-b379-4723-9bfa-363e0d323548",
"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>b866554b-0552-4588-9de0-f2338073f987</id> <key>86be681f-1187-4ed5-96e4-cd3799c8084f</key> <pc_id>f7aa8643-b379-4723-9bfa-363e0d323548</pc_id> <value>sample string 3</value> </pc_config>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"911e2452-a3b7-41de-9ee3-1bed7d869d03"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">911e2452-a3b7-41de-9ee3-1bed7d869d03</guid>