OlegKlimenko / Plamber-Android

The Android application for Plamber project.
https://plamber.com.ua/
Apache License 2.0
1 stars 0 forks source link

Create "restore data" API interaction #15

Closed OlegKlimenko closed 7 years ago

OlegKlimenko commented 7 years ago

URL: <host>/api/v1/send-mail/

You send in: {"email": "<email_to_restore>"}

Success response:

{"status": 200,
 "detail": "successful",
 "data": {}}

Email not exists response:

{"status": 404,
 "detail": "not exists",
 "data": {}}

So when response is success you wrote that "restore instructions was sent on your email", when 404 you write that "user with this email not exists, please check email", other exceptions are unhandled error, or connection. We will test it later.

OlegKlimenko commented 7 years ago

Create "restore data" API interaction