Dark, refined invitation style with gold accents for event RSVPs
Sample data — this is what the auto-generated dashboard looks like when you create this form with createDashboard: true.
Total RSVPs
56
| name | attendance | plus_ones | dietary | Submitted | |
|---|---|---|---|---|---|
| Alex Chen | [email protected] | Yes | 2 | None | — |
| Sam Rivera | [email protected] | No | 4 | Vegetarian | — |
| Jordan Lee | [email protected] | Maybe | 6 | Vegan | — |
| Taylor Kim | [email protected] | Yes | 8 | Gluten-free | — |
| Casey Park | [email protected] | No | 10 | Other | — |
Download the HTML file and serve it anywhere. It already submits to Sutrena out of the box — or swap the endpoint for your own backend.
Get a hosted form with a live dashboard in seconds:
curl -s sutrena.com/api/trial -d '{"email":"[email protected]"}' | jq -r .key | xargs -I{} curl -s sutrena.com/api/forms -H "Authorization: Bearer {}" -d '{"templateId":"rsvp","createDashboard":true}'Deploy this template as a hosted form with one API call:
curl -X POST https://sutrena.com/api/trial
# → {"key":"st_trial_xxx"}
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{
"templateId": "rsvp",
"createDashboard": true
}'[
{
"name": "name",
"label": "Name",
"type": "text",
"required": true
},
{
"name": "email",
"label": "Email",
"type": "email",
"required": true
},
{
"name": "attendance",
"label": "Will you attend?",
"type": "select",
"required": true,
"options": [
"Yes",
"No",
"Maybe"
]
},
{
"name": "plus_ones",
"label": "Plus ones",
"type": "number",
"min": 0,
"max": 5
},
{
"name": "dietary",
"label": "Dietary requirements",
"type": "select",
"options": [
"None",
"Vegetarian",
"Vegan",
"Gluten-free",
"Other"
]
}
]