POST api/NebimCommon/GetPriceList

Request Information

URI Parameters

None.

Body Parameters

GetItemOtherSectionRequest
NameDescriptionTypeAdditional information
ItemCode

string

None.

ColorCode

string

None.

ItemDim1Code

string

None.

ItemDim2Code

string

None.

ItemDim3Code

string

None.

CancelReasonId

integer

None.

WarehouseCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "itemCode": "sample string 1",
  "colorCode": "sample string 2",
  "itemDim1Code": "sample string 3",
  "itemDim2Code": "sample string 4",
  "itemDim3Code": "sample string 5",
  "cancelReasonId": 6,
  "warehouseCode": "sample string 7"
}

application/xml, text/xml

Sample:
<GetItemOtherSectionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VolisServer.DTOs.Request">
  <CancelReasonId>6</CancelReasonId>
  <ColorCode>sample string 2</ColorCode>
  <ItemCode>sample string 1</ItemCode>
  <ItemDim1Code>sample string 3</ItemDim1Code>
  <ItemDim2Code>sample string 4</ItemDim2Code>
  <ItemDim3Code>sample string 5</ItemDim3Code>
  <WarehouseCode>sample string 7</WarehouseCode>
</GetItemOtherSectionRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfListOfPriceGroup
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Errors

Collection of string

None.

Code

integer

None.

Data

Collection of PriceGroup

None.

Warning

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "errors": [
    "sample string 1",
    "sample string 2"
  ],
  "code": 3,
  "data": [
    {
      "priceGroupCode": "sample string 1",
      "priceGroupDescription": "sample string 2"
    },
    {
      "priceGroupCode": "sample string 1",
      "priceGroupDescription": "sample string 2"
    }
  ],
  "warning": true
}

application/xml, text/xml

Sample:
<ResponseModelOfArrayOfPriceGrouplmxkWvTr xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VolisServer.CustomClasses">
  <Code>3</Code>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/VolisServer.Domain.ErpEntities">
    <d2p1:PriceGroup>
      <d2p1:PriceGroupCode>sample string 1</d2p1:PriceGroupCode>
      <d2p1:PriceGroupDescription>sample string 2</d2p1:PriceGroupDescription>
    </d2p1:PriceGroup>
    <d2p1:PriceGroup>
      <d2p1:PriceGroupCode>sample string 1</d2p1:PriceGroupCode>
      <d2p1:PriceGroupDescription>sample string 2</d2p1:PriceGroupDescription>
    </d2p1:PriceGroup>
  </Data>
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Warning>true</Warning>
</ResponseModelOfArrayOfPriceGrouplmxkWvTr>