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. CRM

Customer

PreviousCRMNextCustomer Group

Last updated 4 months ago

Get purchased customer list for a vendor

get

Retrieves a list of customers who have purchased from the vendor, with pagination support.

Query parameters
limitintegerOptional

The number of results to return.

Default: 10
offsetintegerOptional

The starting point for the result set.

Default: 0
countintegerOptional

An optional parameter to toggle count behavior.

Default: 0
Header parameters
AuthorizationstringRequired
Responses
200
Successfully retrieved the list of purchased customers.
400
Bad Request
500
Internal Server Error
get
GET /backend/api/vendor-order/purchased-customer-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully Got Seller Order List</message>
</object>

Get product viewed customer log

get

Retrieves a log of customers who have viewed a product, with pagination and filter options.

Query parameters
limitintegerOptional

The number of results to return.

Default: 10
offsetintegerOptional

The starting point for the result set.

Default: 0
currentPageintegerOptional

The current page number for pagination.

Default: 1
emailIdstringRequired

The email ID of the customer to filter by.

customerIdintegerRequired

The ID of the customer to filter the log by.

Header parameters
AuthorizationstringRequired
Responses
200
Successfully retrieved the customer view log list.
400
Bad Request
500
Internal Server Error
get
GET /backend/api/vendor-order/product-viewed-customer HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got the customer view log list</message>
</object>

Get customer purchased product log

get

Retrieves a log of products purchased by a customer, with pagination and filter options.

Query parameters
limitintegerOptional

The number of results to return.

Default: 10
offsetintegerOptional

The starting point for the result set.

Default: 0
currentPageintegerOptional

The current page number for pagination.

Default: 1
emailIdstringRequired

The email ID of the customer to filter by.

countintegerOptional

A parameter that may be used to toggle count behavior.

Default: 0
Header parameters
AuthorizationstringRequired
Responses
200
Successfully retrieved the customer purchased product log list.
400
Bad Request
500
Internal Server Error
get
GET /backend/api/vendor-order/customer-purchased-product HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully Got Order Product List</message>
</object>
  • GETGet purchased customer list for a vendor
  • GETGet product viewed customer log
  • GETGet customer purchased product log