Pardomart
  1. category
Pardomart
  • auth
    • Register User
      POST
    • Initiate Login
      POST
    • Verify And Login
      POST
    • Resend Verification Code
      POST
    • Get All Time Zones
      GET
  • user
    • Get All Users
      GET
    • Get Verification Codes
      GET
    • Delete user by ID
      DELETE
  • vendor
    • Get All Vendors
      GET
    • Get Vendor By ID
      GET
    • Get vendors by User ID
      GET
    • Create Vendor profile
      POST
    • Update Vendor Profile
      PATCH
    • Delete vendor by Id
      DELETE
  • openingHours
    • Update Opening Hours
      PATCH
  • product
    • Get all Products
      GET
    • Get all vendor products
      GET
    • Create Vendor Product
      POST
    • Get Product By Barcode
      GET
    • Get Vendor Product By Barcode
      GET
    • Delete product by ID
      DELETE
    • Delete Vendor Product By ID
      DELETE
    • Update vendor product
      PATCH
  • category
    • Create Bulk Categories
      POST
    • Get All Categories
      GET
    • Create One Category
      POST
    • Delete One Category
      DELETE
  • tags
    • Create Bulk Tags
    • Get All Tags
    • Create One Tag
    • Update Tag
    • Delete One Tag
  • general search
    • General Search Product
    • General Search Vendors
    • General Search Category
    • Search vendors, categories and products
  • Cart
    • Add to Cart
    • Get cart by userId
    • Delete Cart Item
  • Order
    • Create Order
    • Get order by Id
    • Get Orders By User Id
    • Update Order
    • Update order status
  • Fees
    • Fetch All Fees
    • Create a fee (For Admin)
    • Get Fees by type
    • Update Fee data
    • Calculate Fees
  • Delivery Address
    • Add New Address
    • Get Delivery Address By Id
    • Get All User Delivery Addresses
    • Get Default Delivery Address
    • Update Delivery Address
    • Delete Delivery Address
  1. category

Create Bulk Categories

Developing
POST
/category/bulk

Request

Header Params

Body Params application/json

Example
{
  "categories": [
    {
        "name": "Grains & Rice",
        "description": "Includes various types of rice, quinoa, couscous, and other grains.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Pasta",
        "description": "Includes spaghetti, penne, macaroni, and other pasta shapes.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Canned Goods",
        "description": "Includes canned vegetables, fruits, beans, and soups.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Oils & Vinegars",
        "description": "Includes olive oil, vegetable oil, balsamic vinegar, and other cooking essentials.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Spices & Seasonings",
        "description": "Includes salt, pepper, herbs, and various spice blends.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Baking Supplies",
        "description": "Includes flour, sugar, baking powder, and other ingredients for baking.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Condiments",
        "description": "Includes ketchup, mustard, mayonnaise, and salad dressings.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Breakfast",
        "description": "Includes cereal, oats, and other breakfast items.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Fruits",
        "description": "Various types of fruits",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Vegetables",
        "description": "Various types of vegetables",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Greens",
        "description": "Leafy green vegetables",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Herbs",
        "description": "Fresh herbs",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Milk",
        "description": "Includes various types of milk (whole, skim, almond, soy, etc.)",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Cheese",
        "description": "Includes a variety of cheeses (cheddar, mozzarella, brie, etc.)",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Yogurt",
        "description": "Includes different types of yogurt (Greek, regular, flavored, etc.)",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Butter",
        "description": "Includes butter and butter substitutes",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Eggs",
        "description": "Includes eggs and egg substitutes",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Cream",
        "description": "Includes heavy cream, half-and-half, etc.",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Beef",
        "description": "Includes various cuts of beef (steak, ground beef, etc.)",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Poultry",
        "description": "Includes chicken, turkey, and other poultry products.",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Pork",
        "description": "Includes pork chops, bacon, ham, and other pork products.",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Fish",
        "description": "Includes various types of fish (salmon, tuna, cod, etc.)",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Shellfish",
        "description": "Includes shrimp, crab, lobster, and other shellfish.",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Frozen Fruits",
        "description": "Includes frozen berries, tropical fruits, and other fruit mixes.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Frozen Vegetables",
        "description": "Includes frozen peas, carrots, broccoli, and vegetable blends.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Frozen Meals",
        "description": "Includes frozen entrees, pizzas, and ready-to-eat meals.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Frozen Desserts",
        "description": "Includes ice cream, frozen yogurt, and other frozen treats.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Water",
        "description": "Includes bottled water, sparkling water, and flavored water.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Juice",
        "description": "Includes fruit juices and vegetable juices.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Soda",
        "description": "Includes carbonated soft drinks.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Coffee",
        "description": "Includes coffee beans, ground coffee, and ready-to-drink coffee.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Tea",
        "description": "Includes tea bags, loose leaf tea, and iced tea.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Sports Drinks",
        "description": "Includes drinks for athletes",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Energy Drinks",
        "description": "Includes drinks for boost of energy",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Chips",
        "description": "Includes potato chips, tortilla chips, and other savory chips.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Crackers",
        "description": "Includes various types of crackers.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Cookies",
        "description": "Includes a variety of cookies.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Candy",
        "description": "Includes a wide range of candies and chocolates.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Nuts & Seeds",
        "description": "Includes peanuts, almonds, cashews, sunflower seeds, etc.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Popcorn",
        "description": "Includes regular and flavored popcorn.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Bread",
        "description": "Includes various types of bread (white, wheat, sourdough, etc.).",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Pastries",
        "description": "Includes croissants, muffins, scones, and other pastries.",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Cakes",
        "description": "Includes a variety of cakes (birthday cakes, cupcakes, etc.).",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Pies",
        "description": "Includes fruit pies, and other types of pies.",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Hair Care",
        "description": "Includes shampoo, conditioner, and styling products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Skin Care",
        "description": "Includes cleansers, moisturizers, and other skin care products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Oral Care",
        "description": "Includes toothpaste, toothbrushes, and mouthwash.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Bath & Body",
        "description": "Includes soap, body wash, and lotion.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Cosmetics",
        "description": "Includes makeup products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Feminine Care",
        "description": "Includes tampons, pads, and other feminine hygiene products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Shaving Needs",
        "description": "Includes razors, shaving cream, and aftershave.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Cleaning Supplies",
        "description": "Includes detergents, disinfectants, and other cleaning products.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Paper Products",
        "description": "Includes toilet paper, paper towels, and tissues.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Laundry Supplies",
        "description": "Includes laundry detergent, fabric softener, and bleach.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Trash Bags",
        "description": "Includes various sizes of trash bags.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Air Fresheners",
        "description": "Includes sprays, and other air fresheners.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Pest Control",
        "description": "Includes insecticides and other pest control products.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    }
]

}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/category/bulk' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiJmNjU2NmYzNi1hOTRhLTQ5Y2UtODJkOS0wNTgzNzYzOGEyNjYiLCJyb2xlIjoidmVuZG9yIiwiaWF0IjoxNzQzNDIyOTczLCJleHAiOjE3NDYwMTQ5NzN9.GyanpimdBjlaJwNbDkST7ycEvo1Wsi9XhMD3qROIWyQ' \
--header 'Content-Type: application/json' \
--data-raw '{
  "categories": [
    {
        "name": "Grains & Rice",
        "description": "Includes various types of rice, quinoa, couscous, and other grains.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Pasta",
        "description": "Includes spaghetti, penne, macaroni, and other pasta shapes.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Canned Goods",
        "description": "Includes canned vegetables, fruits, beans, and soups.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Oils & Vinegars",
        "description": "Includes olive oil, vegetable oil, balsamic vinegar, and other cooking essentials.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Spices & Seasonings",
        "description": "Includes salt, pepper, herbs, and various spice blends.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Baking Supplies",
        "description": "Includes flour, sugar, baking powder, and other ingredients for baking.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Condiments",
        "description": "Includes ketchup, mustard, mayonnaise, and salad dressings.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Breakfast",
        "description": "Includes cereal, oats, and other breakfast items.",
        "parentId": "91d85777-ba02-4bdb-9e29-050ba00567a7"
    },
    {
        "name": "Fruits",
        "description": "Various types of fruits",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Vegetables",
        "description": "Various types of vegetables",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Greens",
        "description": "Leafy green vegetables",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Herbs",
        "description": "Fresh herbs",
        "parentId": "bf135ef3-2bf9-4b56-be81-25381c710527"
    },
    {
        "name": "Milk",
        "description": "Includes various types of milk (whole, skim, almond, soy, etc.)",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Cheese",
        "description": "Includes a variety of cheeses (cheddar, mozzarella, brie, etc.)",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Yogurt",
        "description": "Includes different types of yogurt (Greek, regular, flavored, etc.)",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Butter",
        "description": "Includes butter and butter substitutes",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Eggs",
        "description": "Includes eggs and egg substitutes",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Cream",
        "description": "Includes heavy cream, half-and-half, etc.",
        "parentId": "a7206be8-c510-45d5-baf5-a860404ac937"
    },
    {
        "name": "Beef",
        "description": "Includes various cuts of beef (steak, ground beef, etc.)",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Poultry",
        "description": "Includes chicken, turkey, and other poultry products.",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Pork",
        "description": "Includes pork chops, bacon, ham, and other pork products.",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Fish",
        "description": "Includes various types of fish (salmon, tuna, cod, etc.)",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Shellfish",
        "description": "Includes shrimp, crab, lobster, and other shellfish.",
        "parentId": "33114daf-b130-4cb8-8da2-3ae65940f7ea"
    },
    {
        "name": "Frozen Fruits",
        "description": "Includes frozen berries, tropical fruits, and other fruit mixes.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Frozen Vegetables",
        "description": "Includes frozen peas, carrots, broccoli, and vegetable blends.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Frozen Meals",
        "description": "Includes frozen entrees, pizzas, and ready-to-eat meals.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Frozen Desserts",
        "description": "Includes ice cream, frozen yogurt, and other frozen treats.",
        "parentId": "ddd63c78-2b04-48b5-ae8c-0ebb278fbbd5"
    },
    {
        "name": "Water",
        "description": "Includes bottled water, sparkling water, and flavored water.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Juice",
        "description": "Includes fruit juices and vegetable juices.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Soda",
        "description": "Includes carbonated soft drinks.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Coffee",
        "description": "Includes coffee beans, ground coffee, and ready-to-drink coffee.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Tea",
        "description": "Includes tea bags, loose leaf tea, and iced tea.",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Sports Drinks",
        "description": "Includes drinks for athletes",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Energy Drinks",
        "description": "Includes drinks for boost of energy",
        "parentId": "8f80e0de-98c8-47ff-9d28-fcc19875fd3a"
    },
    {
        "name": "Chips",
        "description": "Includes potato chips, tortilla chips, and other savory chips.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Crackers",
        "description": "Includes various types of crackers.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Cookies",
        "description": "Includes a variety of cookies.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Candy",
        "description": "Includes a wide range of candies and chocolates.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Nuts & Seeds",
        "description": "Includes peanuts, almonds, cashews, sunflower seeds, etc.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Popcorn",
        "description": "Includes regular and flavored popcorn.",
        "parentId": "58547076-f2d6-4dab-a376-927ca032ebb6"
    },
    {
        "name": "Bread",
        "description": "Includes various types of bread (white, wheat, sourdough, etc.).",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Pastries",
        "description": "Includes croissants, muffins, scones, and other pastries.",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Cakes",
        "description": "Includes a variety of cakes (birthday cakes, cupcakes, etc.).",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Pies",
        "description": "Includes fruit pies, and other types of pies.",
        "parentId": "95c19e16-b84b-479f-afb9-a85907fcd99b"
    },
    {
        "name": "Hair Care",
        "description": "Includes shampoo, conditioner, and styling products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Skin Care",
        "description": "Includes cleansers, moisturizers, and other skin care products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Oral Care",
        "description": "Includes toothpaste, toothbrushes, and mouthwash.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Bath & Body",
        "description": "Includes soap, body wash, and lotion.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Cosmetics",
        "description": "Includes makeup products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Feminine Care",
        "description": "Includes tampons, pads, and other feminine hygiene products.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Shaving Needs",
        "description": "Includes razors, shaving cream, and aftershave.",
        "parentId": "010890ea-cc98-4d1c-ad29-547c80af4719"
    },
    {
        "name": "Cleaning Supplies",
        "description": "Includes detergents, disinfectants, and other cleaning products.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Paper Products",
        "description": "Includes toilet paper, paper towels, and tissues.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Laundry Supplies",
        "description": "Includes laundry detergent, fabric softener, and bleach.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Trash Bags",
        "description": "Includes various sizes of trash bags.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Air Fresheners",
        "description": "Includes sprays, and other air fresheners.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    },
    {
        "name": "Pest Control",
        "description": "Includes insecticides and other pest control products.",
        "parentId": "51a7e702-e49c-459a-8405-bc18131b584e"
    }
]

}'

Responses

🟢201Created
application/json
Body

Example
[
    {
        "id": "string",
        "name": "string"
    }
]
Modified at 2025-06-24 13:58:59
Previous
Update vendor product
Next
Get All Categories
Built with