OK
const response = await fetch('https://api.laminar.run/auth-credentials/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/auth-credentials/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "name": "text", "authType": "text" }
const response = await fetch('https://api.laminar.run/auth-credentials', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "authType": "text", "name": "text" }), }); const data = await response.json();
const response = await fetch('https://api.laminar.run/auth-credentials', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();