curl --location --request PATCH '/api/v1/auth/profile' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "New Name!",
"email": "new@mail.com",
"phone_number": "08123456789"
}'
{
"status_code": 200,
"message": "Update Profile successfully"
}