Price Lists
Query
priceList — Returns PriceList
Scopes Required: see_pricelists
| Arguments | Type | Description |
|---|---|---|
|
id |
The ID of the price list to retrieve |
Example Query
query GetPriceList($id: ID!) {
priceList(id: $id) {
id,
name,
allowHigherPrice,
allowDiscountingPromotions,
createdAt
}
}
# Example variables
{
"id": "<ID>"
}Example Query
query GetPriceLists {
priceLists {
id,
name,
allowHigherPrice,
allowDiscountingPromotions,
createdAt
}
}