This template monitors a Google Sheet and issues a certificate whenever a row’s Status column changes to “Completed”.Documentation Index
Fetch the complete documentation index at: https://docs.thatsme.com.br/llms.txt
Use this file to discover all available pages before exploring further.
What you need
- That’s Me account on STARTER plan or above
- That’s Me API key (Settings → Integrations)
- N8N account (cloud or self-hosted)
- Google Sheets with columns: Name, Email, Status (and optionally: Phone, Reason)
- Your
event_idandbadge_idfrom the That’s Me API
Step 1 — Get your IDs
Step 2 — Build the N8N workflow
Add trigger: Google Sheets
- Node: Google Sheets Trigger
- Event: Row Added or Updated
- Sheet: your spreadsheet
- Poll every: 5 minutes (or use webhook if available in your N8N plan)
Add action: HTTP Request to That's Me
- Node: HTTP Request
- Method:
POST - URL:
https://api.thatsme.com.br/api/v1.0/invitations - Headers:
Authorization:Bearer YOUR_API_KEYContent-Type:application/json
- Body (JSON):
Step 3 — Receive the certificate URL back (via webhook)
When the recipient accepts the certificate, set up a webhook to get the URL:- In N8N, add a Webhook node — copy the URL
- In That’s Me API, register the webhook:
- In N8N, add a Google Sheets (update) node after the webhook trigger
— write the
certificate_urlback to the spreadsheet row.