Register a new user (send email verification)
POST
/me
const url = 'https://example.com/me';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"example","name":"example","locale":"da_DK"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/me \ --header 'Content-Type: application/json' \ --data '{ "email": "example", "name": "example", "locale": "da_DK" }'