Skip to main content
POST
/
api
/
v1
/
user
/
onboarding
Save Onboarding Data
curl --request POST \
  --url https://api.example.com/api/v1/user/onboarding \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "uid": "<string>",
  "email": "<string>",
  "name": "<string>",
  "source": "<string>",
  "industry": "<string>",
  "jobTitle": "<string>",
  "companyName": "<string>"
}
'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
uid
string
required
email
string
required
name
string
required
source
string
required
industry
string
required
jobTitle
string
required
companyName
string
required

Response

Successful Response

success
boolean
required
message
string
required