Retrieves all article prices, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of article prices.
article_price_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| article_id |
Foreign key of the priced article. |
globally unique identifier | |
| article_price_label_id |
Foreign key of the price label/list this price belongs to. |
globally unique identifier | |
| price |
Unit price of the article under this price label. |
decimal number | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "a54a94f6-6c1b-40c9-9109-59d888580948",
"article_id": "352b1462-3a80-49bb-9c0d-51086974a4c6",
"article_price_label_id": "05115c9f-5943-4664-9163-3bd3f50b4786",
"price": 4.0,
"modified_dateutc": "2026-09-16T09:23:26.4201822+00:00"
}
application/xml, text/xml
Sample:
<article_price_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>352b1462-3a80-49bb-9c0d-51086974a4c6</article_id> <article_price_label_id>05115c9f-5943-4664-9163-3bd3f50b4786</article_price_label_id> <id>a54a94f6-6c1b-40c9-9109-59d888580948</id> <modified_dateutc>2026-09-16T09:23:26.420Z</modified_dateutc> <price>4</price> </article_price_list>