https://github.com/sitetester/sequences-api
Email sequence builder
https://github.com/sitetester/sequences-api
Last synced: 9 months ago
JSON representation
Email sequence builder
- Host: GitHub
- URL: https://github.com/sitetester/sequences-api
- Owner: sitetester
- Created: 2024-03-13T18:01:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T14:23:56.000Z (over 2 years ago)
- Last Synced: 2025-08-25T18:48:15.926Z (11 months ago)
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Specs:
It's an API for creating a sequence. Sequence consists of multiple steps, where the user defines how the first and
followup emails will look like and what are the waiting days in-between them.
Sequence has: name (string), openTrackingEnabled (bool), clickTrackingEnabled (bool).
Each sequence step has email subject and content.
API exposes these endpoints:
- Create a sequence with steps
- Update a sequence step (new subject or content)
- Delete a sequence step
- Update sequence open or click tracking
---
**Run API**: `go run .` (SQLite db will be auto created & schema will be migrated)
Routes are defined inside `api/router.go`
**Run Tests**: `go test -v ./... ` (SQLite test db will be auto created & schema will be migrated)