SignupΒΆ
In order to create a new account, you will need to provide an email address and a password.
curl -X 'POST' \
'http://localhost:8000/api/v1/users/' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"email": "[email protected]",
"password": "VeryS@feP@55w0Rd"
}'
import requests
url = "https://restfall.com/api/v1/users"
response = requests.post(url)
After that, you will receive an email message with the activation url. Once you click it, you will be able to log in.