OK
const response = await fetch('https://api.laminar.run/workflow/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/workflow', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "description": "text", "name": "text" }), }); const data = await response.json();
{ "name": "text", "description": "text", "createdAt": "2024-11-21T07:08:37.242Z" }
const response = await fetch('https://api.laminar.run/workflow', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
const response = await fetch('https://api.laminar.run/workflow/{id}', { method: 'GET', headers: {}, }); const data = await response.json();