POST api/v1/dynamicconcepts/search

Request Information

URI Parameters

None.

Body Parameters

DynamicConceptSearch
NameDescriptionTypeAdditional information
Id

integer

None.

CompanyId

integer

None.

CustomerId

integer

None.

ProductId

integer

None.

ServiceId

integer

None.

PackageId

integer

None.

CategoryName

string

None.

Categories

Collection of integer

None.

CategoryCodes

Collection of string

None.

Search

string

None.

Skip

integer

None.

Take

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CompanyId": 2,
  "CustomerId": 3,
  "ProductId": 4,
  "ServiceId": 5,
  "PackageId": 6,
  "CategoryName": "sample string 7",
  "Categories": [
    1,
    2
  ],
  "CategoryCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "Search": "sample string 8",
  "Skip": 9,
  "Take": 10
}

application/xml, text/xml

Sample:
<DynamicConceptSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.DynamicConcepts">
  <Categories xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Categories>
  <CategoryCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </CategoryCodes>
  <CategoryName>sample string 7</CategoryName>
  <CompanyId>2</CompanyId>
  <CustomerId>3</CustomerId>
  <Id>1</Id>
  <PackageId>6</PackageId>
  <ProductId>4</ProductId>
  <Search>sample string 8</Search>
  <ServiceId>5</ServiceId>
  <Skip>9</Skip>
  <Take>10</Take>
</DynamicConceptSearch>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfListOfDynamicConcept
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of DynamicConcept

None.

Pagination

Pagination

None.

Response Formats

application/json, text/json

Sample:

Sample not available.