resume-cli: Unable to delete account

Hi,

I have been trying to delete my account on http://registry.jsonresume.org/ using resume-cli but the CLI exits when I select the option. This is the output. I have tried it on Mac OS X and Ubuntu 14.04 with same results.

$ resume settings

 SETTINGS                       
 -------------------------      
 CHANGE THEME                   
 CHANGE PASSWORD                
 DELETE ACCOUNT                 
 ------------------------------ 
 EXIT                           

SELECTED: DELETE ACCOUNT

About this issue

  • Original URL
  • State: closed
  • Created 9 years ago
  • Comments: 36 (8 by maintainers)

Most upvoted comments

You can delete your account from terminal with curl via the following line curl -H "Content-Type: application/json" -X DELETE -d '{"email":"youremailhere","password":"yourpasswordhere"}' http://registry.jsonresume.org/account

If successful, you should be getting the following reply: {"message":"\nYour account has been successfully deleted."}

This approach doesn’t solve the problem, but at least removes your data. Create a empty example trough init and publish it:

mkdir /tmp/resume
cd /tmp/resume
resume init
resume publish
rm -rf /tmp/resume

@rkhambekar @0xcrypto Both your resumes are now deleted.

Same here. I deleted it by sending a HTTP DELETE to http://registry.jsonresume.org/account with payload

{"email":"mymail","password":"mypassword"}