POST api/products/selectbykey/{key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
Body Parameters
ProductFilterCriteriaDto| Name | Description | Type | Additional 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": "fe302877-e2ed-4e5d-bf2d-522e6528c3d0",
"Ids": [
"42e280cf-2742-450a-9695-4cc4d1640d20",
"640d150c-dc42-4df3-972f-233e47b89696"
],
"BrandId": "e92201aa-0dae-4313-a66e-f2f16c21b068",
"TenantId": "1a3ead05-acdd-4fdd-b64a-1df948609e9a",
"Name": "sample string 1",
"MinimumSkuCount": 1,
"FolderId": "8a49f193-6a16-4a85-97f4-86e38dfadb41"
}
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>e92201aa-0dae-4313-a66e-f2f16c21b068</BrandId>
<FolderId>8a49f193-6a16-4a85-97f4-86e38dfadb41</FolderId>
<Id>fe302877-e2ed-4e5d-bf2d-522e6528c3d0</Id>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>42e280cf-2742-450a-9695-4cc4d1640d20</d2p1:guid>
<d2p1:guid>640d150c-dc42-4df3-972f-233e47b89696</d2p1:guid>
</Ids>
<MinimumSkuCount>1</MinimumSkuCount>
<Name>sample string 1</Name>
<TenantId>1a3ead05-acdd-4fdd-b64a-1df948609e9a</TenantId>
</ProductFilterCriteriaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.