POST api/v1/products/search

Request Information

URI Parameters

None.

Body Parameters

ProductConsult
NameDescriptionTypeAdditional information
Id

integer

None.

StatusId

integer

None.

SupplierId

integer

None.

CompanyId

integer

None.

Name

string

None.

Description

string

None.

BarCode

string

None.

ShowMobile

boolean

None.

SKUNumber

string

None.

CategoryId

integer

None.

DynamicConceptId

integer

None.

ProductIds

Collection of integer

None.

Skip

integer

None.

Take

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "StatusId": 2,
  "SupplierId": 3,
  "CompanyId": 4,
  "Name": "sample string 5",
  "Description": "sample string 6",
  "BarCode": "sample string 7",
  "ShowMobile": true,
  "SKUNumber": "sample string 9",
  "CategoryId": 10,
  "DynamicConceptId": 11,
  "ProductIds": [
    1,
    2
  ],
  "Skip": 12,
  "Take": 13
}

application/xml, text/xml

Sample:
<ProductConsult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Products">
  <BarCode>sample string 7</BarCode>
  <CategoryId>10</CategoryId>
  <CompanyId>4</CompanyId>
  <Description>sample string 6</Description>
  <DynamicConceptId>11</DynamicConceptId>
  <Id>1</Id>
  <Name>sample string 5</Name>
  <ProductIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ProductIds>
  <SKUNumber>sample string 9</SKUNumber>
  <ShowMobile>true</ShowMobile>
  <Skip>12</Skip>
  <StatusId>2</StatusId>
  <SupplierId>3</SupplierId>
  <Take>13</Take>
</ProductConsult>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfListOfProduct
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of Product

None.

Pagination

Pagination

None.

Response Formats

application/json, text/json

Sample:

Sample not available.