POST api/ItemListing/AddUpdateParametricSearchCriteria

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
paramSearchModel
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "SessionId": "sample string 1",
  "ContactId": 2,
  "TypeCode": "sample string 3",
  "Mfg": "sample string 4",
  "ProductCategory": "sample string 5",
  "AttributeList": [
    {
      "AttributeNo": 1,
      "FromValue": 2.0,
      "FromValueDisplay": "2",
      "ToValue": 3.0,
      "ToValueDisplay": "3",
      "UOM": "sample string 4",
      "CharValue": "sample string 5"
    },
    {
      "AttributeNo": 1,
      "FromValue": 2.0,
      "FromValueDisplay": "2",
      "ToValue": 3.0,
      "ToValueDisplay": "3",
      "UOM": "sample string 4",
      "CharValue": "sample string 5"
    },
    {
      "AttributeNo": 1,
      "FromValue": 2.0,
      "FromValueDisplay": "2",
      "ToValue": 3.0,
      "ToValueDisplay": "3",
      "UOM": "sample string 4",
      "CharValue": "sample string 5"
    }
  ]
}

text/xml

Sample:
<ParamSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EPDS.Model.Item">
  <AttributeList>
    <AttributeModel>
      <AttributeNo>1</AttributeNo>
      <CharValue>sample string 5</CharValue>
      <FromValue>2</FromValue>
      <ToValue>3</ToValue>
      <UOM>sample string 4</UOM>
    </AttributeModel>
    <AttributeModel>
      <AttributeNo>1</AttributeNo>
      <CharValue>sample string 5</CharValue>
      <FromValue>2</FromValue>
      <ToValue>3</ToValue>
      <UOM>sample string 4</UOM>
    </AttributeModel>
    <AttributeModel>
      <AttributeNo>1</AttributeNo>
      <CharValue>sample string 5</CharValue>
      <FromValue>2</FromValue>
      <ToValue>3</ToValue>
      <UOM>sample string 4</UOM>
    </AttributeModel>
  </AttributeList>
  <ContactId>2</ContactId>
  <Mfg>sample string 4</Mfg>
  <ProductCategory>sample string 5</ProductCategory>
  <SessionId>sample string 1</SessionId>
  <TypeCode>sample string 3</TypeCode>
</ParamSearchModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ParamSearchModel'.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
"sample string 1"

text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>