Version project
Create a new version of the project. This stores all data and configuration offsite. If you have access to the enterprise version of Edge Impulse you can store your data in your own storage buckets (only through JWT token authentication).
Authorizations
Path parameters
projectIdintegerRequired
Project ID
Body
bucketIdintegerOptional
Data bucket ID. Keep empty to store in Edge Impulse hosted storage.
descriptionstringRequired
makePublicbooleanRequired
Whether to make this version available on a public URL.
runModelTestingWhileVersioningbooleanOptional
Whether to run model testing when creating this version (if this value is omitted, it will use the current state of 'runModelTestingWhileVersioning' that is returned in ListVersionsResponse).
Responses
200
OK
application/json
Responseall of
post
POST /v1/api/{projectId}/jobs/version HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"bucketId": 1,
"description": "text",
"makePublic": true,
"runModelTestingWhileVersioning": true
}
200
OK
{
"success": true,
"error": "text",
"id": 12873488112
}
Last updated
Was this helpful?