get
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>
delete
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>
get
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>
post
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>
put
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>
put
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>