GET api/Products/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Sku | string |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| AdditionalInfo | string |
None. |
|
| ProductTypeId | globally unique identifier |
None. |
|
| ProductImageId | globally unique identifier |
None. |
|
| InventoryPackageId | globally unique identifier |
None. |
|
| TaxStatus | integer |
None. |
|
| Weight | decimal number |
None. |
|
| Updated | date |
None. |
|
| PrefVendorRefFullName | string |
None. |
|
| PrefVendorRefListID | string |
None. |
|
| ManufacturerPartNumber | string |
None. |
|
| IsDeleted | integer |
None. |
|
| SalesTaxCodeRefFullName | string |
None. |
|
| ItemType | string |
None. |
|
| TaxRate | decimal number |
None. |
|
| DiscountRate | decimal number |
None. |
|
| DiscountRatePercent | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "0b9c6c28-9e90-479d-accb-ba710a33b520",
"Sku": "sample string 1",
"Identifier": "sample string 2",
"Name": "sample string 3",
"Description": "sample string 4",
"AdditionalInfo": "sample string 5",
"ProductTypeId": "ee07369e-f420-4765-8471-1e20363996ff",
"ProductImageId": "37b4b29c-c01b-41f2-a5d8-7202c6b891f8",
"InventoryPackageId": "c6689a01-6a14-4c91-98bf-1efd800241b3",
"TaxStatus": 1,
"Weight": 1.0,
"Updated": "2025-12-15T23:45:04.3747587-05:00",
"PrefVendorRefFullName": "sample string 6",
"PrefVendorRefListID": "sample string 7",
"ManufacturerPartNumber": "sample string 8",
"IsDeleted": 1,
"SalesTaxCodeRefFullName": "sample string 9",
"ItemType": "sample string 10",
"TaxRate": 1.0,
"DiscountRate": 1.0,
"DiscountRatePercent": 1.0
}
application/xml, text/xml
Sample:
<ProductData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <AdditionalInfo>sample string 5</AdditionalInfo> <Description>sample string 4</Description> <DiscountRate>1</DiscountRate> <DiscountRatePercent>1</DiscountRatePercent> <Id>0b9c6c28-9e90-479d-accb-ba710a33b520</Id> <Identifier>sample string 2</Identifier> <InventoryPackageId>c6689a01-6a14-4c91-98bf-1efd800241b3</InventoryPackageId> <IsDeleted>1</IsDeleted> <ItemType>sample string 10</ItemType> <ManufacturerPartNumber>sample string 8</ManufacturerPartNumber> <Name>sample string 3</Name> <PrefVendorRefFullName>sample string 6</PrefVendorRefFullName> <PrefVendorRefListID>sample string 7</PrefVendorRefListID> <ProductImageId>37b4b29c-c01b-41f2-a5d8-7202c6b891f8</ProductImageId> <ProductTypeId>ee07369e-f420-4765-8471-1e20363996ff</ProductTypeId> <SalesTaxCodeRefFullName>sample string 9</SalesTaxCodeRefFullName> <Sku>sample string 1</Sku> <TaxRate>1</TaxRate> <TaxStatus>1</TaxStatus> <Updated>2025-12-15T23:45:04.3747587-05:00</Updated> <Weight>1</Weight> </ProductData>