Categories
Last updated
Last updated
GET /api_user/api/v1/categories HTTP/1.1
Host: papelship.com
x-api-key: YOUR_API_KEY
x-store-hash: YOUR_API_KEY
Accept: */*
{
"success": true,
"categories": [
{
"id": 5,
"name": "Software",
"slug": "software",
"icon": "fa-solid fa-code",
"active": 1,
"parent_id": 1,
"position": 0,
"created_at": "2026-01-27T17:55:10.412Z"
}
]
}POST /api_user/api/v1/categories HTTP/1.1
Host: papelship.com
x-api-key: YOUR_API_KEY
x-store-hash: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 29
{
"name": "text",
"slug": "text"
}{
"success": true,
"category": {
"id": 5,
"name": "Software",
"slug": "software",
"icon": "fa-solid fa-code",
"active": 1,
"parent_id": 1,
"position": 0,
"created_at": "2026-01-27T17:55:10.412Z"
}
}