curl --request POST \
--url https://app.azalt.co/api/v1/form.create \
--header 'Authorization: Bearer ERG-your-api-key' \
--header 'Content-Type: application/json' \
--data '{
"name": "Monthly Energy Tracking",
"description": "Track electricity and natural gas consumption",
"elements": [
{
"key": "electricity_consumption",
"label": "Electricity Consumption",
"type": "NUMBER",
"required": true,
"unit": "kWh",
"period": "MONTHLY"
},
{
"key": "natural_gas_consumption",
"label": "Natural Gas Consumption",
"type": "NUMBER",
"required": true,
"unit": "m³",
"period": "MONTHLY"
}
],
"siteIds": ["your-site-id"],
"years": [2024]
}'