post
POST /backend/api/customer/logout HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<message>Successfully Logout</message>
	<status>1</status>
</object>
get
GET /backend/api/customer/forgot-password-link HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Thank you! A link to reset your password will be sent to your registered email shortly</message>
</object>
post
POST /backend/api/customer/login HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 65

"emailId='text'&password='text'&type='text'&token='text'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Logged in Successfully</message>
</object>
post
POST /backend/api/customer/send-otp HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 28

"emailId='test@gmail.com'"
<?xml version="1.0"?>
<object>
	<status>0</status>
	<message>OTP sent successfully to the provided email.</message>
</object>
post
POST /backend/api/customer/register HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 154

"firstName='John'&lastName='Doe'&password='Password123'&confirmPassword='Password123'&emailId='john.doe@example.com'&phoneNumber='1234567890'"
<?xml version="1.0"?>
<object>
	<message>Thank you for registering with us and please check your email</message>
	<status>1</status>
</object>