get
GET /backend/api/auth/get-profile HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got the profile</message>
</object>
post
POST /backend/api/auth/edit-profile HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 160

"username='john_doe'&phoneNumber='+1234567890'&email='john.doe@example.com'&address='123 Main St, Springfield'&avatar='http://example.com/avatar.jpg'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully updated the profile</message>
</object>
put
PUT /backend/api/auth/change-password HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 56

"oldPassword='fsdfsfs43543'&newPassword='Picco123@'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Password successfully changed</message>
</object>