POST api/products/selectbykey/{key}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
key

string

Required

Body Parameters

ProductFilterCriteriaDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Ids

Collection of globally unique identifier

None.

BrandId

globally unique identifier

None.

TenantId

globally unique identifier

None.

Name

string

None.

MinimumSkuCount

integer

None.

FolderId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "a3f0c915-2266-4d6c-98b8-2897fc6d930b",
  "Ids": [
    "3a888811-a98b-470b-9a4b-8f0bb6e23214",
    "1ae9685e-cbdf-4664-8af0-cb6403680ab0"
  ],
  "BrandId": "4f8059e8-0b84-4eac-96f1-0ff90997dbbe",
  "TenantId": "61a4a3ce-8d3d-4ff7-bad5-0e10370a6352",
  "Name": "sample string 1",
  "MinimumSkuCount": 1,
  "FolderId": "19667b59-046b-4171-ab51-24207ffdec5a"
}

application/xml, text/xml

Sample:
<ProductFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Products.Models">
  <BrandId>4f8059e8-0b84-4eac-96f1-0ff90997dbbe</BrandId>
  <FolderId>19667b59-046b-4171-ab51-24207ffdec5a</FolderId>
  <Id>a3f0c915-2266-4d6c-98b8-2897fc6d930b</Id>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>3a888811-a98b-470b-9a4b-8f0bb6e23214</d2p1:guid>
    <d2p1:guid>1ae9685e-cbdf-4664-8af0-cb6403680ab0</d2p1:guid>
  </Ids>
  <MinimumSkuCount>1</MinimumSkuCount>
  <Name>sample string 1</Name>
  <TenantId>61a4a3ce-8d3d-4ff7-bad5-0e10370a6352</TenantId>
</ProductFilterCriteriaDto>

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.