PUT
/
v0
/
user
/
account-type
curl --request PUT \
  --url 'https://api.unify.ai/v0/user/account-type' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{}
Update user account type (individual vs business).

Authorizations

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

Body

account_type
string
required
business_info
any | null
email
string | null
name
string | null
last_name
string | null
curl --request PUT \
  --url 'https://api.unify.ai/v0/user/account-type' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{}