PATCH api/storeconfig/{storeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
storeId

string

Required

Body Parameters

StoreConfiguration
NameDescriptionTypeAdditional 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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.