Create enterprise trial user

Create enterprise trial user

post

Creates an enterprise trial user and a new trial organization, and redirects the user to the new organization. This API is internal (it requires some signed fields), sign up at https://studio.edgeimpulse.com/signup instead.

Body
all ofOptional
Responses
200
OK
application/json
Responseall of
post
POST /v1/api-user-create-enterprise-trial HTTP/1.1
Host: studio.edgeimpulse.com
Content-Type: application/json
Accept: */*
Content-Length: 641

{
  "email": "[email protected]",
  "name": "John Doe",
  "organizationName": "My Company",
  "expirationDate": "2020-01-01T00:00:00Z",
  "notes": "This is a trial for the company's new project.",
  "useCase": "Industrial",
  "userHasMLModelsInProduction": "no",
  "companyName": "ACME Inc.",
  "companySize": "1-10",
  "country": "United States",
  "stateOrProvince": "California",
  "redirectUrlOrigin": "https://studio.edgeimpulse.com",
  "redirectUrlQueryParams": "utm_source=google&utm_medium=cpc&utm_campaign=trial",
  "username": "johndoe",
  "privacyPolicy": true,
  "password": "text",
  "jobTitle": "TinyML engineer",
  "utmParams": [
    {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    }
  ],
  "turnstileResponse": "text"
}
200

OK

{
  "success": true,
  "error": "text",
  "id": 1,
  "userId": 1,
  "redirectUrl": "text"
}

Last updated

Was this helpful?