POST api/Helper/CUSTOMER_STICKER_LIST

Request Information

URI Parameters

None.

Body Parameters

ZCustomerStickerListRequest
NameDescriptionTypeAdditional information
StickerCode

string

None.

StickerName

string

None.

IsLock

string

None.

ShopID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "StickerCode": "sample string 1",
  "StickerName": "sample string 2",
  "IsLock": "sample string 3",
  "ShopID": 4
}

application/xml, text/xml

Sample:
<ZCustomerStickerListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS.Entity">
  <IsLock>sample string 3</IsLock>
  <ShopID>4</ShopID>
  <StickerCode>sample string 1</StickerCode>
  <StickerName>sample string 2</StickerName>
</ZCustomerStickerListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ZCustomerStickerListResponse
NameDescriptionTypeAdditional information
ID

integer

None.

StickerCode

string

None.

StickerName

string

None.

CreatedDate

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "StickerCode": "sample string 2",
    "StickerName": "sample string 3",
    "CreatedDate": "sample string 4"
  },
  {
    "ID": 1,
    "StickerCode": "sample string 2",
    "StickerName": "sample string 3",
    "CreatedDate": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfZCustomerStickerListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS.Entity">
  <ZCustomerStickerListResponse>
    <CreatedDate>sample string 4</CreatedDate>
    <ID>1</ID>
    <StickerCode>sample string 2</StickerCode>
    <StickerName>sample string 3</StickerName>
  </ZCustomerStickerListResponse>
  <ZCustomerStickerListResponse>
    <CreatedDate>sample string 4</CreatedDate>
    <ID>1</ID>
    <StickerCode>sample string 2</StickerCode>
    <StickerName>sample string 3</StickerName>
  </ZCustomerStickerListResponse>
</ArrayOfZCustomerStickerListResponse>