GET
/
price-controls
/
sku
/
{sku}
curl --request GET \
  --url https://api.fabric.inc/v3/price-controls/sku/{sku} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-fabric-channel-id: <x-fabric-channel-id>' \
  --header 'x-fabric-tenant-id: <x-fabric-tenant-id>'
{
  "priceListId": 100000,
  "itemId": 10000001,
  "itemSku": "SKU0123456",
  "msrp": 299,
  "map": 199.99,
  "floor": 149,
  "ceiling": 149,
  "channelId": "12",
  "isDeleted": true,
  "createdAt": "2019-08-20T14:15:22Z",
  "updatedAt": "2019-08-20T14:15:22Z"
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-fabric-tenant-id
string
required

Merchant's 24-character tenant ID

x-fabric-channel-id
string
required

The sales channel ID.

x-client-id
string

The platform where the request is made.

x-fabric-request-id
string

A unique request ID.

Path Parameters

sku
string
required

Product SKU to get price controls for

Query Parameters

priceListId
integer

Price list ID to which the item belongs. If not sent, the default price list is considered.

Response

200 - application/json
priceListId
integer
required

The price list ID for which the prices are created or updated.

itemId
integer
required

The item ID for which the prices are created or updated.

itemSku
string

The Stock Keeping Unit (SKU) of the item for which prices are created or updated.

msrp
number | null

The manufacturer suggested retail price for the item. It is the price that the manufacturer suggests the retailer should sell the product for in order to make a reasonable profit.

map
number | null

The minimum price advertised for the item. It is the lowest price that a manufacturer or supplier allows its retailers or distributors to advertise a product for sale.

floor
number | null

The lowest price at which the product can be sold. Price created for the item ID or item SKU under the specified price list should not be lower than the given floor price.

ceiling
number | null

The maximum price the seller is allowed to charge for the product. Price created for the item ID or item SKU under the specified price list should not exceed the given ceiling price.

channelId
string

The sales channel ID for the created prices.

isDeleted
boolean
required

true:Record is deleted<br />false:Record is not deleted

createdAt
string

Record's creation time

updatedAt
string

Record's last updated time