POST api/ParentSKU/SaveParentSKU

Request Information

URI Parameters

None.

Body Parameters

ParentSKUCreationModel
NameDescriptionTypeAdditional information
id

integer

None.

name

string

None.

code

string

None.

categoryId

integer

None.

subCategoryId

integer

None.

brandId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "code": "sample string 3",
  "categoryId": 4,
  "subCategoryId": 5,
  "brandId": 6
}

application/xml, text/xml

Sample:
<ParentSKUCreationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICE.WebApi.Models">
  <brandId>6</brandId>
  <categoryId>4</categoryId>
  <code>sample string 3</code>
  <id>1</id>
  <name>sample string 2</name>
  <subCategoryId>5</subCategoryId>
</ParentSKUCreationModel>

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.