Recipe · Notion

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.

Read time · ~5 min
How it works
Testivora fires the testimonial.created event. Your connector (n8n, Zapier, or Make) catches it and creates a page in your Notion database with the testimonial data mapped to your properties.
01

Create a database in Notion

In Notion create a new database for your testimonials. Add these properties with their types:

text
Nombre      → Title
Rating      → Number
Testimonio  → Text
Estado      → Select   (Nuevo, Aprobado, Publicado)
Fecha       → Date
Nombre must be a Title property (the primary one). Estado is a Select with your stages.
02

Catch 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.

03

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:

text
// 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"
Fields come from the event: data.author.name, data.rating, data.text, data.status, and created_at.
04

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.

Use it as your internal wall
This database is your internal 'social-proof wall': share it with the team, filter by Rating or Estado, and use it to decide which testimonials to feature or publish.