const response = await fetch("https://algapsa.com/api/v1/projects", {
method: "POST",
headers: {
"X-API-Key": "$ALGA_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
"project_name": "string",
"status": "string",
"start_date": "string",
"end_date": "string",
"assigned_to": "01HN2K7VRB9PQ3Y0000000000",
"assigned_team_id": "01HN2K7VRB9PQ3Y0000000000",
"client_id": "01HN2K7VRB9PQ3Y0000000000"
})
});
const data = await response.json();