POST api/EcomSync/UpdateAttibuteGroup

Request Information

URI Parameters

None.

Body Parameters

Collection of GroupModel
NameDescriptionTypeAdditional information
Code

integer

None.

Name

string

None.

VarientCode

integer

None.

IsParentChilde

integer

None.

IsRegistered

integer

None.

BrandCode

integer

None.

Dot

string

None.

Remark

string

None.

CloudId

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Code": 1,
    "Name": "sample string 2",
    "VarientCode": 3,
    "IsParentChilde": 4,
    "IsRegistered": 5,
    "BrandCode": 6,
    "Dot": "sample string 7",
    "Remark": "sample string 8",
    "CloudId": 9
  },
  {
    "Code": 1,
    "Name": "sample string 2",
    "VarientCode": 3,
    "IsParentChilde": 4,
    "IsRegistered": 5,
    "BrandCode": 6,
    "Dot": "sample string 7",
    "Remark": "sample string 8",
    "CloudId": 9
  }
]

application/xml, text/xml

Sample:
<ArrayOfGroupModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models">
  <GroupModel>
    <BrandCode>6</BrandCode>
    <CloudId>9</CloudId>
    <Code>1</Code>
    <Dot>sample string 7</Dot>
    <IsParentChilde>4</IsParentChilde>
    <IsRegistered>5</IsRegistered>
    <Name>sample string 2</Name>
    <Remark>sample string 8</Remark>
    <VarientCode>3</VarientCode>
  </GroupModel>
  <GroupModel>
    <BrandCode>6</BrandCode>
    <CloudId>9</CloudId>
    <Code>1</Code>
    <Dot>sample string 7</Dot>
    <IsParentChilde>4</IsParentChilde>
    <IsRegistered>5</IsRegistered>
    <Name>sample string 2</Name>
    <Remark>sample string 8</Remark>
    <VarientCode>3</VarientCode>
  </GroupModel>
</ArrayOfGroupModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultModelOfString
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

Message

string

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "Message": "sample string 2",
  "Data": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models">
  <Data>sample string 3</Data>
  <Message>sample string 2</Message>
  <ResponseCode>1</ResponseCode>
</ResultModelOfstring>