This walk-through wires up the most common public API integration: a website lead form posts to Notealy, the new contact is tagged, and an automation reacts to that tag by sending a templated email.Documentation Index
Fetch the complete documentation index at: https://docs.notealy.com/llms.txt
Use this file to discover all available pages before exploring further.
1. Issue an API token
Settings → API Tokens → New token. Pick scopespeople:write, tags:read and tags:write. Copy the token (you will see it once).
Confirm the token works:
200 with your organization details means you are good to go.
2. Set up the automation in the dashboard
- Go to Automations → New and configure:
- Trigger:
Tag added→ select (or create) the tagweb-lead - Action:
Send message→ channelEmail→ pick (or create) an email template
- Trigger:
- Activate the automation.
3. Get the tag id from the API
4. Push a contact with the tag
- Upserts the contact (matches by phone, then email, then
externalId). - Attaches the
web-leadtag, emittingcontact.tag_addedonce per newly attached tag. - That event triggers the automation; the email goes out within seconds.
5. Replay safely
Posting the same payload again is safe:- The contact is matched by email and updated, not duplicated.
- The tag is already attached, so no new
contact.tag_addedevent is emitted and the automation does not run twice.
What’s next
- See Authentication for scope details.
- Read Webhooks to receive events back from Notealy.
- Browse the API Reference for every endpoint.