const response = await fetch("https://algapsa.com/api/v1/time-sheets", {
method: "POST",
headers: {
"X-API-Key": "$ALGA_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
"user_id": "01HN2K7VRB9PQ3Y0000000000",
"period_id": "01HN2K7VRB9PQ3Y0000000000",
"status": "string",
"notes": "string"
})
});
const data = await response.json();