Base URL
https://{tenant}.logzi.com/api/product_category_fee/
Every request returns a JSON response. On success result.code == 1, on error result.code == 0. The product category fee API is used to manage fee schedules assigned to product categories (e.g. handling fees, shipping fee schedules).
/api/product_category_fee/get
Retrieve a single product category fee record by ID.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | int | Fee record ID |
Example request
GET /api/product_category_fee/get?id=1
X-API-KEY: {your_api_key}
/api/product_category_fee/list
Paginated list of product category fee records.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_offset | int | Pagination offset (default: 0) | |
list_condition | object | Filter conditions object |
Example request
GET /api/product_category_fee/list?list_offset=0
X-API-KEY: {your_api_key}
/api/product_category_fee/save
Create or update a product category fee record.
POST fields — data object
Provide the fee details in the data object (product category ID, fee amount, type).
Example request
POST /api/product_category_fee/save
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 1 } }
/api/product_category_fee/delete
Delete a product category fee record by ID.
POST fields
| Field | Type | Required | Description |
|---|---|---|---|
id | int | ID of the record to delete |
Example request
POST /api/product_category_fee/delete
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "id": 1 }
Create your account now,
pay later!