POST api/store/{StoreID}/ElectronicShelfLabel/blink

Causes any Electronic Shelf Label based on the

Request Information

URI Parameters

NameDescriptionTypeAdditional information
StoreID

Store ID

integer

Required

Body Parameters

A list of which is used to set blink duration and LED colour

Collection of ElectronicShelfLabelBlinkSettings
NameDescriptionTypeAdditional information
PluG_UID

Used to find the appropriate label(s) to blink

Collection of byte

None.

PluGuid

ID of product that will blink

globally unique identifier

None.

Duration

How long the ESL will blink for, default 10 Seconds

ElectronicShelfLabelBlinkDuration

None.

Colour

The colour the LED will blink in, default RED

ElectronicShelfLabelLEDColours

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "pluG_UID": "SvZJ18ZcWUe8ZW0yQTe3xw==",
    "pluGuid": "d749f64a-5cc6-4759-bc65-6d324137b7c7",
    "duration": 1,
    "colour": 2
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfElectronicShelfLabelBlinkSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.ElectronicShelfLabel">
  <ElectronicShelfLabelBlinkSettings>
    <Colour>2</Colour>
    <Duration>1</Duration>
    <PluG_UID>SvZJ18ZcWUe8ZW0yQTe3xw==</PluG_UID>
    <PluGuid>d749f64a-5cc6-4759-bc65-6d324137b7c7</PluGuid>
  </ElectronicShelfLabelBlinkSettings>
  <ElectronicShelfLabelBlinkSettings>
    <Colour>2</Colour>
    <Duration>1</Duration>
    <PluG_UID>SvZJ18ZcWUe8ZW0yQTe3xw==</PluG_UID>
    <PluGuid>d749f64a-5cc6-4759-bc65-6d324137b7c7</PluGuid>
  </ElectronicShelfLabelBlinkSettings>
</ArrayOfElectronicShelfLabelBlinkSettings>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.