Convert current evaluation user

Convert current evaluation user

post

Convert current evaluation user account to regular account.

Authorizations
Body
namestringRequired

Your name

Example: Jan Jongboom
usernamestringRequired

Username, minimum 4 and maximum 30 characters. May contain alphanumeric characters, hyphens, underscores and dots. Validated according to ^(?=.{4,30}$)(?![_.])(?!.*[_.]{2})[a-zA-Z0-9._-]+(?<![_.])$.

Example: janjongboom
emailstringRequired

E-mail address. Will need to be validated before the account will become active.

Example: [email protected]
passwordstringRequired

Password, minimum length 8 characters.

projectNamestringOptional

A project will automatically be created. Sets the name of the first project. If not set, this will be derived from the username.

privacyPolicybooleanRequired

Whether the user accepted the privacy policy

turnstileResponsestringRequired

CloudFlare Turnstile response token

Responses
200
OK
application/json
post
POST /v1/api/user/convert HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 165

{
  "name": "Jan Jongboom",
  "username": "janjongboom",
  "email": "[email protected]",
  "password": "text",
  "projectName": "text",
  "privacyPolicy": true,
  "turnstileResponse": "text"
}
200

OK

{
  "success": true,
  "error": "text"
}

Last updated

Was this helpful?