const response = await fetch("https://algapsa.com/api/v1/invoices/{id}/send", {
method: "POST",
headers: {
"X-API-Key": "$ALGA_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
"email_addresses": [
"user@example.com"
],
"subject": "string",
"message": "string",
"include_pdf": false
})
});
const data = await response.json();