- Auth
- Apps Oauth
- Batch Jobs
- Currencies
- Customers
- Customer Groups
- Discounts
- Draft Orders
- Gift Cards
- Inventory Items
- Invites
- Notes
- Notifications
- Orders
- Create a Reservation
- Cancel Claim's Fulfillment
- Ship a Claim's Fulfillment
- Cancel Swap's Fulfilmment
- Get Order Reservations
- Add a Shipping Method
- Create a Refund
- Get an Order
- Update an Order
- Create a Fulfillment
- Cancel a Swap
- List Orders
- Create a Swap
- Complete an Order
- Create a Swap Fulfillment
- Cancel a Claim
- Process a Swap Payment
- Ship a Fulfillment
- Capture an Order's Payments
- Archive Order
- Update a Claim
- Request a Return
- Create a Claim Fulfillment
- Ship a Swap's Fulfillment
- Cancel a Fulfilmment
- Create a Claim
- Cancel an Order
- Order Edits
- Payments
- Payment Collections
- Product Collections
- Product Tags
- Product Types
- Product Variants
- Price Lists
- Products
- Product Categories
- Publishable Api Keys
- Reservations
- Regions
- Return Reasons
- Returns
- Sales Channels
- Shipping Options
- Shipping Profiles
- Stock Locations
- Store
- Swaps
- Tax Rates
- Uploads
- Users
List Collections
GET
/admin/collections
Product Collections
handle
or title
. The collections can also be sorted or paginated.Request
Query Params
limit
integer
optional
offset
integer
optional
title
string
optional
handle
string
optional
q
string
optional
discount_condition_id
string
optional
lt
array[string]
optional
Example:
["","",""]
gt
array[string]
optional
Example:
["","",""]
lte
array[string]
optional
Example:
["","",""]
gte
array[string]
optional
Example:
["","",""]
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.medusa-commerce.com/admin/collections'
Responses
🟢200OK
application/json
Body
count
integer
required
offset
integer
required
limit
integer
required
collections
array[object (Product Collection) {8}]
required
id
string
required
Example:
pcol_01F0YESBFAZ0DV6V831JXWH0BG
title
string
required
Example:
Summer Collection
handle
string | null
required
Example:
summer-collection
created_at
string <date-time>
required
updated_at
string <date-time>
required
deleted_at
string <date-time> | null
required
products
array [object]
optional
metadata
object | null
required
Example:
{"car":"white"}
Example
{
"count": 0,
"offset": 0,
"limit": 0,
"collections": [
{
"id": "pcol_01F0YESBFAZ0DV6V831JXWH0BG",
"title": "Summer Collection",
"handle": "summer-collection",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"products": [
{}
],
"metadata": {
"car": "white"
}
}
]
}
🟠400Client Error or Multiple Errors
🟠401User is not authorized. Must log in first
🟠404Not Found Error
🟠409Invalid State Error
🟠422Invalid Request Error
🔴500Server Error
Modified at 2023-10-08 12:50:29