Spurtcommerce
DocumentAPI ReferenceAdd-ons
API Reference
API Reference
  • About Spurtcommerce APIs
  • Spurtcommerce
    • Admin API
      • Admin
        • Authentication
        • My Profile
        • Support
      • Buyers
        • Manage Buyer
      • Chat
      • CMS
        • Manage Banner
        • Manage Blogs
        • Manage Pages
        • Manage SEO
      • Dashboard
      • Marketing
        • Manage Cross Selling
          • Related Products
        • Manage Promotions
          • Coupon
      • Marketplace
        • Manage Products
        • Manage Sales
        • Manage Settlements
        • Product Configuration
        • Reports
      • Sellers
        • Seller
        • Seller Group
        • Seller KYC Request
      • Settings
        • Add-ons
        • Add-ons Product Attributes
        • Localization
        • Order Fulfilment Status
        • Personalise
        • Site Settings
        • Store Settings
        • System
        • User and Permission
        • Support-Category
    • Store API
      • Account Settings
        • Customer
        • My Order
        • My Quotation
        • My Wishlist
        • Profile
        • Support
      • Checkouts
      • Store
        • Admin Contact
        • Categories
        • Home
        • Product Detail Page
    • Vendor API
      • Page 1
      • Catalogue
        • Bulk Product Imports
          • Custom
          • Standard
        • Common Product
        • Data Export
        • Pricing
        • Product Localisation
        • Product List
        • Product Variants
        • Related Products
      • CRM
        • Customer
        • Customer Group
        • Question and Answer
        • Rating and Review
      • Dashboard
      • Marketing
      • Payments
        • Archeived Payments
        • Earnings
        • Settlements
      • Profile
        • Account Settings
          • My Business
          • My KYC
          • My Profile
          • My Shop
          • Personalised Setting
        • Chat
        • Vendor
        • Support
      • Reports
      • Sales
        • Archeive Orders
        • Back Orders
        • Failed Orders
        • Orders
        • Quotation Request
        • Stock Update
        • Variant Stock Update
      • Supplier
        • Contact
        • Supplier
Powered by GitBook
On this page
  1. Spurtcommerce
  2. Vendor API
  3. Catalogue
  4. Bulk Product Imports

Custom

PreviousBulk Product ImportsNextStandard

Last updated 3 months ago

Download Product Sample

get

Allows the user to download a sample product file.

Responses
200
File downloaded successfully
Responsestring · binary
400
Bad Request
404
File Not Found
500
Internal Server Error
get
GET /backend/api/vendor-product/download-product-sample HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>binary</object>
  • POSTImport images
  • POSTImport vendor data
  • GETDownload Product Sample

Import images

post

Upload a file to import images.

Header parameters
AuthorizationstringRequired
Body
filestring · binaryRequired

The file containing images to be imported

Responses
200
Given images imported successfully
400
Bad Request
500
Internal Server Error
post
POST /backend/api/vendor-import-datas/import-image HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 17

"file='binary'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Given images imported successfully</message>
</object>

Import vendor data

post

Handles the import of vendor data by processing a buffer sent via form data.

Body
bufferstringRequired

The buffer containing encoded data

Responses
200
Vendor data imported successfully
400
Bad Request
500
Internal Server Error
post
POST /backend/api/vendor-import-datas HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 17

"buffer='text'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<fileName>./ErrorBulkProduct_1735536997894.xlsx</fileName>
</object>