Retrieves the article price label with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article price label id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article price label, or 404 Not Found if it doesn't exist.
article_price_label| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Display name of this price label. |
string | |
| is_default |
Indicates this is the default price label used when none is explicitly specified. |
boolean | |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all. |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| db_currency_id |
Foreign key of the currency prices under this label are expressed in. |
globally unique identifier | |
| db_currency_code |
ISO code of the currency (denormalized copy of the currency record). |
string | |
| db_currency_name |
Display name of the currency (denormalized copy of the currency record). |
string | |
| db_currency_symbol |
Display symbol of the currency (denormalized copy of the currency record). |
string |
Response Formats
application/json, text/json
{
"id": "095cb0b5-8331-4bbe-ae68-e5b8cad2f91d",
"name": "sample string 2",
"is_default": true,
"sales_organization_id": "ca0b3152-3c9a-43ef-b290-1c34c2107c79",
"modified_dateutc": "2026-09-16T09:24:13.7909744+00:00",
"db_currency_id": "f5da778a-b242-44d4-a596-a76fafed4cfc",
"db_currency_code": "sample string 7",
"db_currency_name": "sample string 8",
"db_currency_symbol": "sample string 9"
}
application/xml, text/xml
<article_price_label xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_currency_code>sample string 7</db_currency_code> <db_currency_id>f5da778a-b242-44d4-a596-a76fafed4cfc</db_currency_id> <db_currency_name>sample string 8</db_currency_name> <db_currency_symbol>sample string 9</db_currency_symbol> <id>095cb0b5-8331-4bbe-ae68-e5b8cad2f91d</id> <is_default>true</is_default> <modified_dateutc>2026-09-16T09:24:13.790Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>ca0b3152-3c9a-43ef-b290-1c34c2107c79</sales_organization_id> </article_price_label>