Change the email address for an account.
-
Requires authentication and current password
-
HTTP Method: PUT
-
Body:
{ "user": { "email": "[email protected]", "current_password": "towel", } }
-
Status: 200 OK
-
Body:
{ "id": 1, "email": "[email protected]", "domain": null, "domain_home_page": null, "private_items": true, "subscribed": false, "alpha": false, "created_at": "2010-12-10T17:07:01Z", "updated_at": "2010-12-10T20:33:38Z", "activated_at": "2010-12-10T17:07:01Z" }
curl --digest -u [email protected]:towel \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d \
'{
"user": {
"email": "[email protected]",
"current_password": "towel"
}
}' \
-X PUT \
"http://my.cl.ly/account"