1. MiniPOS Categories API
UCS MiniPOS API - PUBLIC
  • MIDserver
    • MiniPOS Invoice API
      • ValidateInvoice
      • New Sales Invoice - Basic
      • New Refund Invoice - Basic
      • New Sales Invoice - Advanced
      • New Sales Invoice + Slip after payment
      • New Non fiscal slip
      • Get Invoice List
      • Get Invoice by ID
  • CRMserver
    • MiniPOS Products API
      • GET Products List
      • GET Product by ID
      • DELETE Product by ID
      • Change Product by ID
      • Create new Product Basic
      • Create new Product Advanced
    • MiniPOS Categories API
      • Create new Category
        POST
    • MiniPOS Shift Data API
      • GET shifts
      • GET receipts
  1. MiniPOS Categories API

Create new Category

POST
/api/categories

Request

Body Params application/json

Examples

Responses

🟢201
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/categories' \
--header 'Content-Type: application/json' \
--data-raw '{
      "name": "Category 02"
  }'
Response Response Example
{
    "id": 6,
    "name": "Category Name",
    "status": 1,
    "created_at": "2025-05-14T22:12:06.440380+03:00",
    "updated_at": "2025-05-14T22:12:06.440380+03:00"
}
Modified at 2026-04-15 12:52:15
Previous
Create new Product Advanced
Next
GET shifts
Built with