Retrieves all article price labels, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of article price labels.

article_price_label
NameDescriptionTypeAdditional 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

Sample:
{
  "id": "15a83d4b-9c87-4f63-83a3-43798f35f04b",
  "name": "sample string 2",
  "is_default": true,
  "sales_organization_id": "ca03dd6c-6fbf-43d7-b308-a3da1f67766e",
  "modified_dateutc": "2026-09-16T08:34:48.2089183+00:00",
  "db_currency_id": "ba0a1e7e-c86d-4e4e-9428-5b6a408ee982",
  "db_currency_code": "sample string 7",
  "db_currency_name": "sample string 8",
  "db_currency_symbol": "sample string 9"
}

application/xml, text/xml

Sample:
<article_price_label xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_currency_code>sample string 7</db_currency_code>
  <db_currency_id>ba0a1e7e-c86d-4e4e-9428-5b6a408ee982</db_currency_id>
  <db_currency_name>sample string 8</db_currency_name>
  <db_currency_symbol>sample string 9</db_currency_symbol>
  <id>15a83d4b-9c87-4f63-83a3-43798f35f04b</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-09-16T08:34:48.208Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>ca03dd6c-6fbf-43d7-b308-a3da1f67766e</sales_organization_id>
</article_price_label>