List Price Lists
GET
/admin/price-lists
Price Lists
q
or status
. The price lists can also be sorted or paginated.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.medusa-commerce.com/admin/price-lists'
Response Response Example
200 - Example 1
{
"count": 0,
"offset": 0,
"limit": 0,
"price_lists": [
{
"id": "pl_01G8X3CKJXCG5VXVZ87H9KC09W",
"name": "VIP Prices",
"description": "Prices for VIP customers",
"starts_at": "2019-08-24T14:15:22Z",
"ends_at": "2019-08-24T14:15:22Z",
"includes_tax": false,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"type": "sale",
"status": "draft",
"customer_groups": [
{
"id": "cgrp_01G8ZH853Y6TFXWPG5EYE81X63",
"name": "VIP",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"customers": [
{}
],
"price_lists": [
{}
],
"metadata": {
"car": "white"
}
}
],
"prices": [
{
"id": "ma_01F0YESHRFQNH5S8Q0PK84YYZN",
"amount": 100,
"min_quantity": 1,
"max_quantity": 1,
"price_list_id": "pl_01G8X3CKJXCG5VXVZ87H9KC09W",
"price_list": {},
"variant_id": "variant_01G1G5V2MRX2V3PVSR2WXYPFB6",
"variant": {},
"region_id": "reg_01G1G5V26T9H8Y0M4JNE3YGA4G",
"region": {},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"currency_code": "usd",
"currency": {
"symbol": "$",
"symbol_native": "$",
"name": "US Dollar",
"includes_tax": false,
"code": "usd"
}
}
]
}
]
}
Request
Query Params
limit
number
optional
offset
number
optional
expand
string
optional
fields
string
optional
order
string
optional
id
string
optional
q
string
optional
status
array[string]
optional
name
string
optional
customer_groups
array[string]
optional
type
array[string]
optional
lt
array[string]
optional
Example:
["","",""]
gt
array[string]
optional
Example:
["","",""]
lte
array[string]
optional
Example:
["","",""]
gte
array[string]
optional
Example:
["","",""]
Responses
Modified at 2023-10-10 11:56:36