Initiate multi-step signup process
POST
/
auth
/
initiate-signup
Initiate multi-step signup process
curl --request POST \
--url http://localhost:3002/api/v1/auth/initiate-signup \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', email: 'jsmith@example.com'})
};
fetch('http://localhost:3002/api/v1/auth/initiate-signup', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/auth/initiate-signup"
payload = {
"name": "<string>",
"email": "jsmith@example.com"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Last modified on July 18, 2026
⌘I
Initiate multi-step signup process
curl --request POST \
--url http://localhost:3002/api/v1/auth/initiate-signup \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', email: 'jsmith@example.com'})
};
fetch('http://localhost:3002/api/v1/auth/initiate-signup', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/auth/initiate-signup"
payload = {
"name": "<string>",
"email": "jsmith@example.com"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)