Skip to main content
POST
/
api
/
v1
/
user
/
recover
curl --request POST \
    --url http://localhost:8000/api/v1/user/recover \
    --header "Content-Type: application/json" \
    --data '{
        "email": "user@example.com"
    }' | jq
{
  "message": "<string>"
}
curl --request POST \
    --url http://localhost:8000/api/v1/user/recover \
    --header "Content-Type: application/json" \
    --data '{
        "email": "user@example.com"
    }' | jq

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

Generic message schema.

message
string
required