Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Create or update onboarding profile

POST/v1/auth/onboarding
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Request body
requiredapplication/json
business_typestringrequired
min length 1
company_namestringrequired
min length 1
company_sizestringrequired
min length 1
company_websitestring
first_namestringrequired
min length 1
goalsstring[] | nullrequired
industrystringrequired
min length 1
last_namestringrequired
min length 1
no_websitebooleanrequired
phone_numberstringrequired
min length 1
Responses
200OK
business_typestringrequired
company_namestringrequired
company_sizestringrequired
company_websitestring
first_namestringrequired
goalsstring[] | nullrequired
industrystringrequired
last_namestringrequired
no_websitebooleanrequired
phone_numberstringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X POST "/v1/auth/onboarding" \
  -H "Content-Type: application/json" \
  -d '{
  "business_type": "string",
  "company_name": "string",
  "company_size": "string",
  "company_website": "string",
  "first_name": "string",
  "goals": [
    "string"
  ],
  "industry": "string",
  "last_name": "string",
  "no_website": true,
  "phone_number": "string"
}'
Response
{
  "business_type": "string",
  "company_name": "string",
  "company_size": "string",
  "company_website": "string",
  "first_name": "string",
  "goals": [
    "string"
  ],
  "industry": "string",
  "last_name": "string",
  "no_website": true,
  "phone_number": "string"
}