Create user
Create a new user and project. This API is no longer publicly available. Sign up at https://studio.edgeimpulse.com/signup instead.
Your name
Jan Jongboom
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._-]+(?<![_.])$
.
janjongboom
E-mail address. Will need to be validated before the account will become active.
[email protected]
Password, minimum length 8 characters.
A project will automatically be created. Sets the name of the first project. If not set, this will be derived from the username.
Whether the user accepted the privacy policy
Activation token for users created via SSO
Unique identifier of the identity provider asserting the identity of this user
Job title of the user. Optional field
Session ID. Optional field
ACME Inc.
If true, allows signup to proceed despite a potentially invalid email. Note that this will enforce email verification post-signup
CloudFlare Turnstile response token
POST /v1/api-user-create HTTP/1.1
Host: studio.edgeimpulse.com
Content-Type: application/json
Accept: */*
Content-Length: 356
{
"name": "Jan Jongboom",
"username": "janjongboom",
"email": "[email protected]",
"password": "text",
"projectName": "text",
"privacyPolicy": true,
"activationToken": "text",
"identityProvider": "text",
"jobTitle": "text",
"sessionId": "text",
"companyName": "text",
"utmParams": [
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
],
"ignoreEmailValidation": true,
"turnstileResponse": "text"
}
OK
{
"success": true,
"error": "text",
"redirectUrl": "text",
"id": 1
}
Last updated
Was this helpful?