POST

Creates a new user account. Requires only an email:

http POST https://apps.dataplicity.com/register/ <<< '{ "email": "[email protected]" }'
curl --header "Content-Type: application/json"  --request POST --data '{ "email": "[email protected]" }'  https://apps.dataplicity.com/register/

On success, you will receive a 201 (Created) response, and a token that can be used to make authenticated requests as described in Authentication.

Be sure to check your email and verify your account, otherwise you won't be able to log in later!