PUT api/ElectronicShelfLabel/{id}/StoreConfigurations/{StoreConfigurationID}/Format/{FormatID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

StoreConfigurationID

integer

Required

FormatID

integer

Required

Body Parameters

ElectronicShelfLabelFormat
NameDescriptionTypeAdditional information
ID

integer

None.

LayoutName

string

None.

ProductsPerLayout

The amount of product the layout requires.

integer

None.

StoreID

integer

None.

ElectronicShelfLabelFormatMap

A list of showing which ESL template are currently mapped to this EMC format/layout

Collection of ElectronicShelfLabelFormatMapping

Relation. This field may not always be loaded or used for updates.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "layoutName": "sample string 2",
  "productsPerLayout": 3,
  "storeID": 4,
  "electronicShelfLabelFormatMap": [
    {
      "$id": "2",
      "id": 1,
      "electronicShelfLabelsLayoutID": 2,
      "storeElectronicShelfLabelID": 3,
      "eslProviderLayoutName": "sample string 4",
      "eslType": 5,
      "storeID": 6
    },
    {
      "$ref": "2"
    }
  ]
}

application/xml, text/xml

Sample:
<ElectronicShelfLabelFormat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.ElectronicShelfLabel">
  <ElectronicShelfLabelFormatMap>
    <ElectronicShelfLabelFormatMapping>
      <ESLProviderLayoutName>sample string 4</ESLProviderLayoutName>
      <ESLType>5</ESLType>
      <ElectronicShelfLabelsLayoutID>2</ElectronicShelfLabelsLayoutID>
      <ID>1</ID>
      <StoreElectronicShelfLabelID>3</StoreElectronicShelfLabelID>
      <StoreID>6</StoreID>
    </ElectronicShelfLabelFormatMapping>
    <ElectronicShelfLabelFormatMapping>
      <ESLProviderLayoutName>sample string 4</ESLProviderLayoutName>
      <ESLType>5</ESLType>
      <ElectronicShelfLabelsLayoutID>2</ElectronicShelfLabelsLayoutID>
      <ID>1</ID>
      <StoreElectronicShelfLabelID>3</StoreElectronicShelfLabelID>
      <StoreID>6</StoreID>
    </ElectronicShelfLabelFormatMapping>
  </ElectronicShelfLabelFormatMap>
  <ID>1</ID>
  <LayoutName>sample string 2</LayoutName>
  <ProductsPerLayout>3</ProductsPerLayout>
  <StoreID>4</StoreID>
</ElectronicShelfLabelFormat>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.