-
Notifications
You must be signed in to change notification settings - Fork 0
Login
Madmeerkat-creator edited this page Nov 5, 2021
·
2 revisions
POST /user/login
| name | type | description | required |
|---|---|---|---|
| phoneNum | Integer | O | |
| password | String | O |
{
"phoneNum" : "01012341234",
"password" : "our rule"
}
-> rule은 백엔드에 문의| name | type | description |
|---|---|---|
| status | Int | |
| success | Boolean | |
| message | String | |
| data | Object |
{
"status": 200,
"success": true,
"message": "Login success",
"data": {
"token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiIwMTAzMDMyMzY4MiIsImlhdCI6MTYzNjA4ODgwMywiZXhwIjoxNjM4NjgwODAzfQ.9Dr2QhleNiiLaQ0S5TzAZYuSYYlPo1oWrvwfQBoFRM9BLD2vrbPZvaAZW4F8GbSbenaorQj_QfXxphcqtWyjtQ"
}
}