Customer Group
Retrieves a list of customers from a vendor's customer group, with pagination and filter options.
The number of results to return.
10
The starting point for the result set.
0
A parameter to toggle count behavior.
0
Successfully retrieved the customer list.
Bad Request
Internal Server Error
GET /backend/api/vendor-customer-group HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got customer list</message>
</object>
Creates a new customer group using form data.
The name of the customer group.
Successfully created the customer group.
Bad Request
Internal Server Error
POST /backend/api/vendor-customer-group HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 15
"name='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully created customer group</message>
</object>
Updates the status of a specific customer group by its ID.
The ID of the customer group to update.
The new status of the customer group (e.g., 0 for inactive, 1 for active).
The ID of the customer group being updated.
Successfully updated the customer group status.
Bad Request
Customer Group Not Found
Internal Server Error
PUT /backend/api/vendor-customer-group/status/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 19
"status=1&id=1"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully update customer group status</message>
</object>
Retrieves the details of a specific customer group by its ID.
The ID of the customer group to retrieve.
Successfully retrieved the customer group details.
Customer Group Not Found
Internal Server Error
GET /backend/api/vendor-customer-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got customer groups detail</message>
</object>
Updates the details of a specific customer group by its ID.
The ID of the customer group to update.
The ID of the customer group being updated.
The new name for the customer group.
Successfully updated the customer group.
Bad Request
Customer Group Not Found
Internal Server Error
PUT /backend/api/vendor-customer-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 22
"id=1&name='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully updated customer group</message>
</object>
Deletes a specific customer group by its ID.
The ID of the customer group to delete.
Successfully deleted the customer group.
Customer Group Not Found
Internal Server Error
DELETE /backend/api/vendor-customer-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully deleted customer group</message>
</object>
Last updated