← Back to directory
Operations Quick to set up Automation Onboard/Guide

Create New User In Notion From Form

Source reviewed Updated 2026-07-07

New form submission? The agent checks if the user exists in Notion and creates a new entry with their name, email, and current semester.

ops and IT teams

What it does

Capture new sign-ups instantly by automatically creating Notion entries for users who don't exist yet. The agent pulls name, email, and current semester from your form submission to keep your database up to date without manual work.

Step by step

  1. Parse the incoming JSON payload from the form webhook to extract name and email fields.
  2. Query the Notion database using the email property as a filter condition.
  3. Use the Notion API create page endpoint if no existing record is found, or update the existing page ID.

Where the LLM does the work

  • Generate the specific Python or JavaScript code to handle the HTTP request and JSON parsing logic.
  • Construct the precise Notion API payload structure for creating a new user with the correct property types.
  • Determine how to dynamically fetch the current semester ID from another database to link it as a relation.

Watch out for

Notion API requires specific property IDs rather than names, so you must map these correctly before sending requests.
The semester relation expects a page ID object, not just the text name, so ensure you fetch the correct ID first.
Webhook handlers often fail silently on malformed JSON, add explicit error logging for debugging purposes.

Tools that fit

Notion Service User database management

The agent brief

Everything your agent needs, including the gotchas. Copy it and go.
agent-brief.md
You are helping me build the following AI agent workflow.

## Goal
Create New User In Notion From Form: New form submission? The agent checks if the user exists in Notion and creates a new entry with their name, email, and current semester.

## Specification
- What it does: Capture new sign-ups instantly by automatically creating Notion entries for users who don't exist yet. The agent pulls name, email, and current semester from your form submission to keep your database up to date without manual work.
- Trigger: Triggered by an event (Event · on form submission)
- Autonomy: Fully hands-off
- Expected setup effort: under an hour
- Tools/services involved:
  - Notion: User database management

## Known pitfalls, handle each one explicitly in your implementation
1. Notion API requires specific property IDs rather than names, so you must map these correctly before sending requests.
2. The semester relation expects a page ID object, not just the text name, so ensure you fetch the correct ID first.
3. Webhook handlers often fail silently on malformed JSON, add explicit error logging for debugging purposes.

## Reference implementation
https://n8n.io/workflows/1373 (workflow template)
Fetch and inspect this before building. If it matches my stack, adapt it;
if not, rebuild the pattern with my tools.

## Process requirements
1. Before building: ask me which of the listed tools I actually use and
   what my platform is (n8n / Make / code / other). Do not assume.
2. Adapt the pattern to my answers; do not force the reference stack.
3. Address every pitfall above; tell me how you handled each.
4. Provide a test plan I can run before letting this touch real data.
5. Ask before any step that sends messages, modifies data, or spends money.

Source: https://usecasesforagents.com/use-case/create-new-user-in-notion-from-form/ via usecasesforagents.com

Frequently asked questions

Can I use a different Notes & Docs than Notion?

Yes. Notion is only the example notes & docs in this recipe. The same flow works with Figma, Google Docs, Google Slides and Microsoft SharePoint. Swap the notes & docs connection and keep the rest of the setup as written.

Want this running in your business?

This is what I do. I design and build AI agents like this one, and keep them running. If you want it set up for your team instead of doing it yourself, get in touch.
Get in touch →

Who it's for

Built for Ops-IT teams who need one more recurring task off a human's plate.

Seen in the wild

← Back to directory