Retrieves the article price with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article price id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article price, or 404 Not Found if it doesn't exist.
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": "33ce77eb-4412-40e8-8781-f178d02b2a30",
"article_id": "e55e2e73-26b5-480b-999a-f25931d2df22",
"article_price_label_id": "c94a36f3-5224-4b4c-80d1-9541584b6d16",
"price": 4.0,
"modified_dateutc": "2026-09-16T09:24:49.1254506+00:00"
}
application/xml, text/xml
Sample:
<article_price_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>e55e2e73-26b5-480b-999a-f25931d2df22</article_id> <article_price_label_id>c94a36f3-5224-4b4c-80d1-9541584b6d16</article_price_label_id> <id>33ce77eb-4412-40e8-8781-f178d02b2a30</id> <modified_dateutc>2026-09-16T09:24:49.125Z</modified_dateutc> <price>4</price> </article_price_list>