POST
/
admin
/
signup
/
step_one
curl --request POST \
  --url https://api.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
}

Body

application/json
Data required for the first step of user signup
email
string
required
password
string
required
firstName
string
required
lastName
string
required

Response

200
application/json
User signup step one successful
message
string
status
string
user_id
integer
Example:

123