OK
const response = await fetch('https://api.laminar.run/api-keys/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/api-keys', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "workspaceId": 0 }), }); const data = await response.json();
{ "id": 0, "apiKey": "text", "createdAt": "2024-12-21T12:02:39.751Z" }
const response = await fetch('https://api.laminar.run/api-keys/{id}', { method: 'GET', headers: {}, }); const data = await response.json();