Skip to main content

Store Product Category

Store Product Category

Request Body required

The body to store product category

    name string required

    Possible values: <= 255 characters

    min_temperature number
    max_temperature number
Responses

OK


Schema
    data object
    id string
POST /product-category

Authorization

name: Authorizationtype: apiKeyin: header

Request

Base URL
https://api.mceasy.com/order/api/web/v1
BearerAuth
Body required
{
"name": "string",
"min_temperature": 0,
"max_temperature": 0
}
curl / cURL
curl -L -X POST 'https://api.mceasy.com/order/api/web/v1/product-category' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"min_temperature": 0,
"max_temperature": 0
}'