Import Items Categories

This is the endpoint for getting the possible item categories of the item to be imported.

Import Items Categories

Endpoint => /orders/item-categories

GET /orders/item-categories

Headers

Name
Type
Description

Authorization *

String

Your Bearer Token

secret-key*

String

Your Secret Key

{
    "status": "Success",
    "description": "Request Successful",
    "data": {
        "categories": [
            {
                "id": 1,
                "name": "Food and Groceries"
            },
            {
                "id": 2,
                "name": "Retail Products"
            },
            {
                "id": 3,
                "name": "Pharmaceuticals and Healthcare"
            },
            {
                "id": 4,
                "name": "Documents and Parcels"
            },
            {
                "id": 5,
                "name": "Furniture and Household Items"
            },
            {
                "id": 6,
                "name": "Flowers and Gifts"
            },
            {
                "id": 7,
                "name": "Electronics and Gadgets"
            },
            {
                "id": 8,
                "name": "Automotive Parts"
            },
            {
                "id": 9,
                "name": "Industrial and Commercial Supplies"
            },
            {
                "id": 10,
                "name": "Specialty Items"
            }
        ]
    }
}

Last updated