- Introduction
- Warehouses
- Delivery Groups
- Delivery Ranges
- Delivery Drops
- Sales Rep Hierarchies
- Sales Reps
- Sales Rep Managers
- Ordering Groups
- Customers
- Attendees
- Vendors
- Brokers
- Booths
- Create a new Booth
- Update a Booth
- Get a list of Booths
- Retrieve a specific Booth by ID
- Delete a Booth
- Associate a product to a booth
- Get a list of products associated with a booth
- Associate multiple products to a booth
- Remove a product from a booth
- Associate a vendor to a booth
- Associate multiple vendors to a booth
- Get a list of vendors associated with a booth
- Remove a vendor from a booth
- Facilitators
- Brands
- Categories
- Products
- Create new pricing for a productPOST
- Update product pricing by price IDPUT
- Get a collection of price lists for productsGET
- Retrieve pricing by price IDGET
- Delete a price list by IDDELETE
- Create a new ProductPOST
- Update a ProductPUT
- Get a list of ProductsGET
- Retrieve a specific Product by IDGET
- Delete a ProductDELETE
- Get a list of Product InventoryGET
- Bulk update product inventoryPUT
- Orders
- Delivery Dates
- VIP Users
- Show Admins
- Exports
Retrieve pricing by price ID
GET
/Price/{id}
Products
id
in the endpoint pathRequest Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/Price/'
Response Response Example
200 - Price
{
"productID": "PROD2138",
"warehouse": "WH4586",
"orderUnit": "PK",
"priceZone": 609,
"price": 283.39,
"showPrice": 642.59,
"msrp": 739.59,
"canOrder": true
}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
stringÂ
required
Responses
🟢200OK
application/json
Body
id
stringÂ
read-onlyoptional
productID
stringÂ
required
>= 1 characters
warehouse
stringÂ
required
>= 1 characters
orderUnit
stringÂ
required
>= 1 characters
priceZone
integer <int32>
required
price
number <double>
optional
showPrice
number <double>
required
msrp
number <double>
optional
canOrder
booleanÂ
optional
🟠400Bad Request
Modified at 2025-05-15 21:08:25