const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/secrets', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"name": "text",
"description": "text",
"secret": "text"
}),
});
const data = await response.json();