GET api/v1/{companyId}/listprice?page={page}&pageSize={pageSize}&modifiedAfter={modifiedAfter}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId | string |
Required |
|
| page | integer |
Default value is 0 |
|
| pageSize | integer |
Default value is 100 |
|
| modifiedAfter | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of 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-15T21:50:19.2399093+01:00"
},
{
"ProductId": "sample string 1",
"Price": 1.0,
"LastModified": "2025-12-15T21:50:19.2399093+01:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfListPriceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TreeOfPets.LitiumIntegration.Api.Models">
<ListPriceModel>
<LastModified>2025-12-15T21:50:19.2399093+01:00</LastModified>
<Price>1</Price>
<ProductId>sample string 1</ProductId>
</ListPriceModel>
<ListPriceModel>
<LastModified>2025-12-15T21:50:19.2399093+01:00</LastModified>
<Price>1</Price>
<ProductId>sample string 1</ProductId>
</ListPriceModel>
</ArrayOfListPriceModel>