curl --request POST \
--url https://studio.edgeimpulse.com/v1/api-user-create-enterprise-trial \
--header 'Content-Type: application/json' \
--data '{
"email": "jan@edgeimpulse.com",
"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": "<string>",
"jobTitle": "TinyML engineer",
"utmParams": [
{}
],
"turnstileResponse": "<string>"
}'
{
"success": true,
"error": "<string>",
"id": 123,
"userId": 123,
"redirectUrl": "<string>"
}
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.
curl --request POST \
--url https://studio.edgeimpulse.com/v1/api-user-create-enterprise-trial \
--header 'Content-Type: application/json' \
--data '{
"email": "jan@edgeimpulse.com",
"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": "<string>",
"jobTitle": "TinyML engineer",
"utmParams": [
{}
],
"turnstileResponse": "<string>"
}'
{
"success": true,
"error": "<string>",
"id": 123,
"userId": 123,
"redirectUrl": "<string>"
}
Trial request
The body is of type object
.
OK
The response is of type object
.