GET api/v1/{companyId}/listprice/{productId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId | string |
Required |
|
| productId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ListPriceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | string |
None. |
|
| Price | decimal number |
None. |
|
| LastModified | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProductId": "sample string 1",
"Price": 1.0,
"LastModified": "2025-12-16T01:44:41.4950389+01:00"
}
application/xml, text/xml
Sample:
<ListPriceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TreeOfPets.LitiumIntegration.Api.Models"> <LastModified>2025-12-16T01:44:41.4950389+01:00</LastModified> <Price>1</Price> <ProductId>sample string 1</ProductId> </ListPriceModel>