im thinking what is the best RESTful way how confirm email and request reseting password. Im only aiming to find correct URI...
confirm email
PUT /users/{u
Here is a RESTful way.
Request
PUT /{userid}/email HTTP/1.1 Content-Type: text/json+confirmation-code {"activateCode": "23sfgsg3twt3rgsdhgs"}
Response
HTTP/1.1 200 OK Content-Type: text/json+email-status {"email": "my-email@address.com", "active": "true"}
No verbs in the URI needed :)