GET api/MyPage/Product/SuggestedPriceList?fromDateTime={fromDateTime}&maxRows={maxRows}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
fromDateTime | date |
None. |
|
maxRows | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of MyPageSuggestedProductPriceName | Description | Type | Additional information |
---|---|---|---|
productNo | string |
None. |
|
description | string |
None. |
|
salesPriceInCurrency | decimal number |
None. |
|
purchasePriceInCurrency | decimal number |
None. |
|
costPriceInCurrency | decimal number |
None. |
|
lastChanged | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "productNo": "sample string 1", "description": "sample string 2", "salesPriceInCurrency": 1.0, "purchasePriceInCurrency": 1.0, "costPriceInCurrency": 1.0, "lastChanged": "2025-05-23T23:12:49.8427392+02:00" }, { "productNo": "sample string 1", "description": "sample string 2", "salesPriceInCurrency": 1.0, "purchasePriceInCurrency": 1.0, "costPriceInCurrency": 1.0, "lastChanged": "2025-05-23T23:12:49.8427392+02:00" } ]
application/xml, text/xml
Sample:
<ArrayOfMyPageSuggestedProductPrice xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <MyPageSuggestedProductPrice> <productNo>sample string 1</productNo> <description>sample string 2</description> <salesPriceInCurrency>1</salesPriceInCurrency> <purchasePriceInCurrency>1</purchasePriceInCurrency> <costPriceInCurrency>1</costPriceInCurrency> <lastChanged>2025-05-23T23:12:49.8427392+02:00</lastChanged> </MyPageSuggestedProductPrice> <MyPageSuggestedProductPrice> <productNo>sample string 1</productNo> <description>sample string 2</description> <salesPriceInCurrency>1</salesPriceInCurrency> <purchasePriceInCurrency>1</purchasePriceInCurrency> <costPriceInCurrency>1</costPriceInCurrency> <lastChanged>2025-05-23T23:12:49.8427392+02:00</lastChanged> </MyPageSuggestedProductPrice> </ArrayOfMyPageSuggestedProductPrice>