const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/campaigns', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"name": "text",
"description": "text",
"coordinatorUids": [],
"queries": [
{
"name": "text",
"dataset": "text",
"query": "text"
}
],
"links": [
{
"icon": "text",
"name": "text",
"link": "text"
}
],
"datasets": [
"text"
],
"pipelineIds": [],
"projectIds": []
}),
});
const data = await response.json();