Skip to main content
POST
/
member
/
unlock
Unlock locked user
curl --request POST \
  --url https://apiweb.mile.app/api/v3/member/unlock \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user+1@mile.app"
}
'
{
  "status": true,
  "code": 200,
  "message": "user+1@mile.app has been unlocked. The user can now log in."
}

Authorizations

Authorization
string
header
required

Use a valid Bearer token to authenticate.

Body

application/json
email
string
required

The email of user. Example: example@mile.app

Response

Success

status
boolean

Status of response.

message
string

Message of response.