const response = await fetch('https://cloud-api.calyptia.com/v1/projects/{projectID}/saml_mappings', {
method: 'POST',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"claimKey": "text",
"claimValue": "text",
"role": "admin"
}),
});
const data = await response.json();