Create new empty project
Create a new empty project within an organization.
Authorizations
Path parameters
organizationIdintegerRequired
Organization ID
Body
projectNamestringRequiredExample:
The name of the project.
EEG trials
projectVisibilitystring · enumOptionalPossible values:
The visibility of the project, either public or private. Public projects can be viewed by anyone on the internet and edited by collaborators. Private projects can only be viewed and edited by collaborators.
projectOwnerUsernameOrEmailstringOptionalExample:
The username or email of the owner of the project. This field is mandatory when authenticating via API key. If no email is provided when authenticating via JWT, the user ID attached to the JWT will be user as project owner.
[email protected]
showGettingStartedWizardbooleanOptional
Whether to show the getting started wizard use-case chooser screen after the project is created
tutorialKeystring · enumOptionalPossible values:
Optional in-product tutorial to launch after the project is created
Responses
200
OK
application/json
Responseall of
post
POST /v1/api/organizations/{organizationId}/new-project HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 161
{
"projectName": "EEG trials",
"projectVisibility": "public",
"projectOwnerUsernameOrEmail": "[email protected]",
"showGettingStartedWizard": true,
"tutorialKey": "kws"
}
200
OK
{
"success": true,
"error": "text",
"id": 1,
"apiKey": "text"
}
Last updated
Was this helpful?