const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: 'jsmith@example.com', password: '<string>', name: '<string>'})
};
fetch('http://localhost:8000/v1/auth/users/signup', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));