POST api/storeconfig
Request Information
URI Parameters
None.
Body Parameters
StoreConfiguration| Name | Description | Type | Additional information |
|---|---|---|---|
| StoreId | string |
None. |
|
| EventSettings | Collection of EventSettings |
None. |
Request Formats
application/json, text/json
Sample:
{
"StoreId": "sample string 1",
"EventSettings": [
{
"EventType": "sample string 1",
"Enabled": true,
"Notify": true,
"Modified": 1,
"UserData": "sample string 4"
},
{
"EventType": "sample string 1",
"Enabled": true,
"Notify": true,
"Modified": 1,
"UserData": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<StoreConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAKioskAid.Models">
<EventSettings>
<EventSettings>
<Enabled>true</Enabled>
<EventType>sample string 1</EventType>
<Modified>1</Modified>
<Notify>true</Notify>
<UserData>sample string 4</UserData>
</EventSettings>
<EventSettings>
<Enabled>true</Enabled>
<EventType>sample string 1</EventType>
<Modified>1</Modified>
<Notify>true</Notify>
<UserData>sample string 4</UserData>
</EventSettings>
</EventSettings>
<StoreId>sample string 1</StoreId>
</StoreConfiguration>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.