Pardomart
  1. tags
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
    • Get All Categories
    • Create One Category
    • Delete One Category
  • tags
    • Create Bulk Tags
      POST
    • Get All Tags
      GET
    • Create One Tag
      POST
    • Update Tag
      PATCH
    • Delete One Tag
      DELETE
  • 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. tags

Create Bulk Tags

Developing
POST
/tags/bulk

Request

Body Params application/json

Example
{
  "names": [
    "Organic",
    "Gluten-Free",
    "Vegan",
    "Vegetarian",
    "Dairy-Free",
    "Sugar-Free",
    "Low-Sodium",
    "Keto",
    "Paleo",
    "Fair Trade",
    "Local",
    "Seasonal",
    "Fresh",
    "Frozen",
    "Canned",
    "Packaged",
    "Bulk",
    "Sale",
    "New Arrival",
    "Best Seller",
    "Limited Edition",
    "Imported",
    "Spicy",
    "Sweet",
    "Salty",
    "Sour",
    "Bitter",
    "Nut-Free",
    "Soy-Free",
    "Kosher",
    "Halal",
    "Non-GMO",
    "Sustainable",
    "Eco-Friendly",
    "Compostable",
    "Recyclable",
    "Reduced Sugar",
    "High Protein",
    "High Fiber",
    "Whole Grain",
    "Artisan",
    "Handmade",
    "Gourmet",
    "International",
    "Bakery",
    "Produce",
    "Meat",
    "Seafood",
    "Dairy",
    "Beverages",
    "Snacks",
    "Household",
    "Cleaning",
    "Personal Care",
    "Pet Supplies",
    "Baby",
    "Pharmaceutical",
    "Condiments",
    "Cooking Ingredients",
    "Baking Supplies",
    "Breakfast",
    "Lunch",
    "Dinner",
    "Dessert",
    "Snacks",
    "Beverages",
    "Ready to Eat",
    "Meal Kits",
    "Value Pack",
    "Family Size",
    "Party Pack",
    "Refillable",
    "Plant-Based",
    "Free Range"
  ]
}

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 '/tags/bulk' \
--header 'Content-Type: application/json' \
--data-raw '{
  "names": [
    "Organic",
    "Gluten-Free",
    "Vegan",
    "Vegetarian",
    "Dairy-Free",
    "Sugar-Free",
    "Low-Sodium",
    "Keto",
    "Paleo",
    "Fair Trade",
    "Local",
    "Seasonal",
    "Fresh",
    "Frozen",
    "Canned",
    "Packaged",
    "Bulk",
    "Sale",
    "New Arrival",
    "Best Seller",
    "Limited Edition",
    "Imported",
    "Spicy",
    "Sweet",
    "Salty",
    "Sour",
    "Bitter",
    "Nut-Free",
    "Soy-Free",
    "Kosher",
    "Halal",
    "Non-GMO",
    "Sustainable",
    "Eco-Friendly",
    "Compostable",
    "Recyclable",
    "Reduced Sugar",
    "High Protein",
    "High Fiber",
    "Whole Grain",
    "Artisan",
    "Handmade",
    "Gourmet",
    "International",
    "Bakery",
    "Produce",
    "Meat",
    "Seafood",
    "Dairy",
    "Beverages",
    "Snacks",
    "Household",
    "Cleaning",
    "Personal Care",
    "Pet Supplies",
    "Baby",
    "Pharmaceutical",
    "Condiments",
    "Cooking Ingredients",
    "Baking Supplies",
    "Breakfast",
    "Lunch",
    "Dinner",
    "Dessert",
    "Snacks",
    "Beverages",
    "Ready to Eat",
    "Meal Kits",
    "Value Pack",
    "Family Size",
    "Party Pack",
    "Refillable",
    "Plant-Based",
    "Free Range"
  ]
}'

Responses

🟢201Created
application/json
Body

Example
[
    {
        "id": "string",
        "name": "string"
    }
]
Modified at 2025-04-14 10:21:45
Previous
Delete One Category
Next
Get All Tags
Built with