Compare commits

..

5 Commits

Author SHA1 Message Date
manaknight cfb5cede83 Update 'README.md' 2022-10-17 18:26:14 +00:00
manaknight 619d5db87a Update 'README.md' 2022-09-01 19:41:37 +00:00
manaknight d9eacb74c1 Update 'README.md' 2022-09-01 19:15:27 +00:00
manaknight 8b57719a52 Update 'README.md' 2022-07-11 20:10:46 +00:00
manaknight f07a653bc3 Update 'README.md' 2022-07-11 17:56:51 +00:00
+10 -6
View File
@@ -10,7 +10,7 @@ Task 1: Oct 18 2021
- Login screen takes email and password. Do all the basic validation on client side and display proper error message if theres error from the API. Display the error message either in toast, custom dialog or native alert. API endpoint is https://reacttask.mkdlabs.com/v2/api/lambda/login. Request body are email, password. Look at the request below.
- Register screen takes email, password, first_name, last_name(and code for this VOYD app). Validation similar to Login screen should be applied. API endpoint is https://reacttask.mkdlabs.com/member/api/register. Call register api first for email, role and password. Then call https://reacttask.mkdlabs.com/v2/api/lambda/profile to save first_name and last_name and code.
- Register screen takes email, password, first_name, last_name(and code for this VOYD app). Validation similar to Login screen should be applied. API endpoint is https://reacttask.mkdlabs.com/lambda/api/register. Call register api first for email, role and password. Then call https://reacttask.mkdlabs.com/v2/api/lambda/profile to save first_name and last_name and code.
- Forgot password screen should ask for email. Read the forgot api below.
@@ -53,12 +53,13 @@ Response
https://reacttask.mkdlabs.com/v2/api/lambda/register
Method POST
content-type application/json
x-project cmVhY3R0YXNrOjVmY2h4bjVtOGhibzZqY3hpcTN4ZGRvZm9kb2Fjc2t5ZQ==
x-project cmVhY3R0YXNrOmQ5aGVkeWN5djZwN3p3OHhpMzR0OWJtdHNqc2lneTV0Nw==
body
{
"email": "member@manaknight.com",
"password": "a123456",
"role": "member"
"role": "member",
"is_refresh": false
}
Response
{
@@ -80,8 +81,10 @@ Authorization Bearer <token>
x-project cmVhY3R0YXNrOjVmY2h4bjVtOGhibzZqY3hpcTN4ZGRvZm9kb2Fjc2t5ZQ==
body
{
"first_name": "<update>",
"last_name": "<update>"
"payload": {
"first_name": "<update>",
"last_name": "<update>"
}
}
Response
{
@@ -105,7 +108,8 @@ Response
{
"error": false,
"message": "message",
"code" : "<code>"
"code" : "<code>",
"token": "<token>"
}
```