Make A Version Public
Make a version of a project public. This makes all data and state available (read-only) on a public URL, and allows users to clone this project.
post
https://studio.edgeimpulse.com/v1
/api/{projectId}/jobs/versions/{versionId}/make-public
Make a version public
Make a version of a project public. This makes all data and state available (read-only) on a public URL, and allows users to clone this project.
Parameters
Path
projectId*
integer
Project ID
versionId*
integer
Version ID
Responses
200: OK
OK
cURL
Python
Node.js
curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/versions/{versionId}/make-public \
--header 'x-jwt-token: REPLACE_KEY_VALUE'
import http.client
conn = http.client.HTTPSConnection("studio.edgeimpulse.com")
headers = { 'x-jwt-token': "REPLACE_KEY_VALUE" }
conn.request("POST", "/v1/api/{projectId}/jobs/versions/{versionId}/make-public", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const request = require('request');
const options = {
method: 'POST',
url: 'https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/versions/{versionId}/make-public',
headers: {'x-jwt-token': 'REPLACE_KEY_VALUE'}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
Last modified 1mo ago