Body
application/json
Data required for the first step of user signup
Handles the first step of user signup, including data validation and user creation.
curl --request POST \
--url https://api-staging.helpyousponsor.com/v1/admin/signup/step_one \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com",
"password": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}'
{
"message": "<string>",
"status": "<string>",
"user_id": 123
}
Data required for the first step of user signup
curl --request POST \
--url https://api-staging.helpyousponsor.com/v1/admin/signup/step_one \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com",
"password": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}'
{
"message": "<string>",
"status": "<string>",
"user_id": 123
}