const response = await fetch('https://api.laminar.run/auth-credentials', {
method: 'POST',
headers: {
"Authorization": "Bearer JWT",
"Content-Type": "application/json"
},
body: JSON.stringify({
"authType": "text",
"name": "text",
"workspaceId": 0
}),
});
const data = await response.json();