Reads the content of a specific flow
Flow content read successfully
const response = await fetch('https://api.laminar.run/flows/read/{id}', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
text