POST api/pcconfigapi/addMany?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
Collection of 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 100 |
Request Formats
application/json, text/json
Sample:
[
{
"active": true,
"id": "ed5b0358-c64f-41d9-93ec-5c9b63dcf933",
"key": "c32892df-1a0f-45f5-97a2-426eb21bb997",
"pc_id": "5b21e3e3-6e3d-4af5-bd07-418d0f9ea374",
"value": "sample string 3"
},
{
"active": true,
"id": "ed5b0358-c64f-41d9-93ec-5c9b63dcf933",
"key": "c32892df-1a0f-45f5-97a2-426eb21bb997",
"pc_id": "5b21e3e3-6e3d-4af5-bd07-418d0f9ea374",
"value": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfpc_config xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<pc_config>
<active>true</active>
<id>ed5b0358-c64f-41d9-93ec-5c9b63dcf933</id>
<key>c32892df-1a0f-45f5-97a2-426eb21bb997</key>
<pc_id>5b21e3e3-6e3d-4af5-bd07-418d0f9ea374</pc_id>
<value>sample string 3</value>
</pc_config>
<pc_config>
<active>true</active>
<id>ed5b0358-c64f-41d9-93ec-5c9b63dcf933</id>
<key>c32892df-1a0f-45f5-97a2-426eb21bb997</key>
<pc_id>5b21e3e3-6e3d-4af5-bd07-418d0f9ea374</pc_id>
<value>sample string 3</value>
</pc_config>
</ArrayOfpc_config>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.