GET api/GetProduct?prodId={prodId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| prodId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Product| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| ProductType | ProductType |
None. |
|
| Estimate | decimal number |
None. |
|
| MinPrice | decimal number |
None. |
|
| BuyNowPrice | decimal number |
None. |
|
| StartDateUtc | date |
None. |
|
| EndDateUtc | date |
None. |
|
| Pictures | Collection of string |
None. |
|
| DeliveryInfo | DeliveryInfo |
None. |
|
| PickupInfo | PickupInfo |
None. |
|
| RegionInfo | RegionInfo |
None. |
|
| ExperienceInfo | ExperienceInfo |
None. |
|
| Auction | Auction |
None. |
|
| Sponsor | Sponsor |
None. |
|
| Bid | Bid |
None. |
|
| Inventory | integer |
None. |
Response Formats
application/json
Sample:
{
"EndDateUtc": "2025-11-08T06:44:48.0547916Z",
"StartDateUtc": "2025-11-08T06:44:48.0547916Z",
"MinPrice": 7,
"Estimate": 6,
"Inventory": 12,
"ProductId": 2,
"Pictures": [
"sample string 1",
"sample string 2"
],
"Bid": {
"MaxBidAmount": 2,
"CurrentAmount": 1,
"NoOfItems": 10,
"SiteUserGuid": 4,
"BidId": 1,
"CurrentWinner": "sample string 3"
},
"ProductType": 0,
"BuyNowPrice": 1,
"Description": "sample string 4",
"Name": "sample string 3"
}
application/xml, text/xml
Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OdendoApi.Models">
<Bid>
<BidId>1</BidId>
<CurrentAmount>1</CurrentAmount>
<CurrentWinner>sample string 3</CurrentWinner>
<MaxBidAmount>2</MaxBidAmount>
<NoOfItems>10</NoOfItems>
<SiteUserGuid>4</SiteUserGuid>
</Bid>
<BuyNowPrice>1</BuyNowPrice>
<Description>sample string 4</Description>
<EndDateUtc>2025-11-08T07:44:48.0547916+01:00</EndDateUtc>
<Estimate>6</Estimate>
<Inventory>12</Inventory>
<MinPrice>7</MinPrice>
<Name>sample string 3</Name>
<Pictures xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Pictures>
<ProductId>2</ProductId>
<ProductType>None</ProductType>
<StartDateUtc>2025-11-08T07:44:48.0547916+01:00</StartDateUtc>
</Product>