OK
const response = await fetch('https://api.laminar.run/api-keys/{id}', { method: 'DELETE', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/api-keys', { method: 'POST', headers: { "Authorization": "Bearer JWT", "Content-Type": "application/json" }, body: JSON.stringify({ "workspaceId": 0 }), }); const data = await response.json();
{ "id": 0, "apiKey": "text", "createdAt": "2025-01-22T04:38:32.838Z" }
const response = await fetch('https://api.laminar.run/api-keys/{id}', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();