Save every testimonial in Notion
Every time a new testimonial arrives, create it as a page in a Notion database. Your own social-proof repository — sorted and filterable, no copy-pasting.
Create a database in Notion
In Notion create a new database for your testimonials. Add these properties with their types:
Nombre → Title
Rating → Number
Testimonio → Text
Estado → Select (Nuevo, Aprobado, Publicado)
Fecha → DateCatch testimonial.created in your connector
First connect Testivora to your connector (n8n, Zapier, or Make). In Testivora go to Settings → Webhooks → New endpoint, paste the connector's URL and pick the testimonial.created event. Your connector now receives a POST for every new testimonial.
Add Notion's 'Create Database Item' action
In the same flow add Notion's 'Create Database Item' (or 'Create Page') action, point it at the database you created, and map the payload fields (which arrive under data) to your properties:
// Testivora event → Notion "Create Database Item"
Nombre ← data.author.name // "Ana López"
Rating ← data.rating // 5
Testimonio ← data.text // el testimonio
Estado ← data.status // "approved"
Fecha ← created_at // "2026-06-03T01:00:00.000Z"Test with 'Send test'
On your Testivora endpoint hit 'Send test'. Your connector should create a new page in the Notion database with the sample testimonial. Check that each property landed in the right place and tweak the mapping if needed.