curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/projects/create \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"projectName": "EEG trials",
"projectVisibility": "public",
"originalProjectVersionId": 123,
"showGettingStartedWizard": true,
"tutorialKey": "kws"
}'
{
"success": true,
"error": "<string>",
"id": 123,
"apiKey": "<string>"
}
Create a new project. This API can only be called using a JWT token.
curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/projects/create \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"projectName": "EEG trials",
"projectVisibility": "public",
"originalProjectVersionId": 123,
"showGettingStartedWizard": true,
"tutorialKey": "kws"
}'
{
"success": true,
"error": "<string>",
"id": 123,
"apiKey": "<string>"
}
OK
The response is of type object
.