Home
This endpoint retrieves a list of widgets available in the system.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the widget list.
Bad Request
Internal Server Error
GET /backend/api/list/widget-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got widget list</message>
</object>
This endpoint returns a URL that redirects to the add-address
API for Google Map integration.
The name of the plugin requesting the API key.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the Google Map API key URL.
Bad Request
Internal Server Error
GET /backend/api/list/gmap-key HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Redirect to this url</message>
</object>
This endpoint retrieves a list of all available languages.
Number of languages to retrieve.
Starting point to retrieve languages.
Filter languages based on keyword search.
Flag to indicate if the total count of languages should be returned.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the language list.
Bad Request
Internal Server Error
GET /backend/api/list/language HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the complete language list</message>
</object>
This endpoint retrieves the store settings for a given industry.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the store settings.
Bad Request due to invalid parameters.
Internal Server Error
GET /backend/api/settings/store-setting HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got settings</message>
</object>
This endpoint retrieves the list of available addons for the system.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the addons list.
Bad Request
Internal Server Error
GET /backend/api/list/addons HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get the list</message>
</object>
This endpoint retrieves the list of items in the customer's cart.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully got the cart list
Bad Request
Internal Server Error
GET /backend/api/cart HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the cart list</message>
</object>
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
2023
Product successfully added to wishlist
Bad request
Internal server error
POST /backend/api/customer/add-product-to-wishlist HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 44
"productId=2023&productOptionValueId=''"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>You have Successfully add to wishlist</message>
</object>
This API allows customers to retrieve their profile information.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the customer profile
Bad request
Internal server error
GET /backend/api/customer/get-profile HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Get the Profile.</message>
</object>
This API allows customers to retrieve a list of products in their wishlist.
Limit the number of products returned.
Offset for pagination.
Optional Bearer token for authentication.
The industry of the user.
The unique key for the request.
The language key for the request.
Successfully retrieved the wishlist product list
Bad request
Internal server error
GET /backend/api/customer/wishlist-product-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully show the wishlist product list</message>
</object>
Fetch a list of pages with optional filters and pagination.
Limit the number of results
Offset for pagination
Search keyword for filtering pages
If set, returns count of pages (should be number or boolean)
Optional bearer token for authentication
Language ID for content localization
Successfully retrieved the page list
Invalid input
Unauthorized request
Internal server error
GET /backend/api/pages HTTP/1.1
Host: 139.59.67.17
languageId: 1
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the group list</message>
</object>
Retrieve detailed information about a page using its slug name.
The slug name of the page to fetch details for
Optional bearer token for authentication
Language ID for content localization
Successfully retrieved page details
Invalid request parameters
Unauthorized request
Page not found
Internal server error
GET /backend/api/pages/{slugName} HTTP/1.1
Host: 139.59.67.17
languageId: 1
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get page Details</message>
</object>
Last updated