- 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
- Uploads
- Tax Rates
- Users
Create a Product Category
POST
/admin/product-categories
Product Categories
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.medusa-commerce.com/admin/product-categories' \
--header 'Content-Type: application/json' \
--data-raw ''
Response Response Example
200 - Example 1
{
"product_category": {
"id": "pcat_01G2SG30J8C85S4A5CHM2S1NS2",
"name": "Regular Fit",
"handle": "regular-fit",
"mpath": "pcat_id1.pcat_id2.pcat_id3",
"is_internal": false,
"is_active": false,
"rank": 0,
"parent_category_id": null,
"parent_category": {},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"category_children": [
{}
],
"products": [
{}
]
}
}
Request
Query Params
expand
string
optional
fields
string
optional
Body Params application/json
name
string
required
description
string
optional
handle
string
optional
is_internal
boolean
optional
true
, the product category will only be available to admins.is_active
boolean
optional
false
, the product category will not be available in the storefront.parent_category_id
string
optional
Examples
Responses
🟢200OK
application/json
Body
product_category
object (Product Category)
required
id
string
required
Example:
pcat_01G2SG30J8C85S4A5CHM2S1NS2
name
string
required
Example:
Regular Fit
handle
string
required
Example:
regular-fit
mpath
string | null
required
Example:
pcat_id1.pcat_id2.pcat_id3
is_internal
boolean
required
Default:
false
is_active
boolean
required
Default:
false
rank
integer
optional
Default:
0
parent_category_id
string | null
required
Default:
null
parent_category
object | null
optional
created_at
string <date-time>
required
updated_at
string <date-time>
required
category_children
array [object]
required
products
array [object]
optional
🟠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-10 11:56:36