Contact & audience management service for Reloop — contacts, groups, channels, and preferences.
2.2K
The Contacts Service is the audience and contact management microservice in the Reloop platform. It handles the full lifecycle of contacts — including creating and managing contact records, custom properties, channel identifiers (email, phone, etc.), contact groups, and per-contact communication preferences.
Built on Bun + Elysia, backed by PostgreSQL and Redis.
x-api-key header/api/contacts/openapi| Resource | Link |
|---|---|
| 📚 Documentation | reloop.sh/docs/setup/backend/contacts |
| 🌐 Production API | api.reloop.sh/api/contacts |
| 📜 OpenAPI Spec | reloop.sh/api/contacts/openapi |
| 🐙 Source Code | github.com/reloop-labs/reloop |
| 💬 Discord | discord.gg/reloop |
| 🐦 Twitter / X | @reloophq |
| 🆘 Support | reloop.sh/support |
docker pull reloopsh/be-contacts:latest
docker run -d \
-p 8014:8014 \
-e PG_URL=postgresql://user:password@host:5432/reloop \
-e REDIS_URL=redis://:password@host:6379 \
-e NATS_URL=nats://host:4222 \
-e BASE_URL=https://your-domain.com \
reloopsh/be-contacts:latest
The service will be available at http://localhost:8014/api/contacts.
| Variable | Default | Description |
|---|---|---|
PORT | 8014 | Port the server listens on |
PG_URL | — | PostgreSQL connection string |
REDIS_URL | — | Redis connection string |
NATS_URL | — | NATS messaging server URL |
BASE_URL | — | Public base URL of the platform |
NODE_ENV | production | Runtime environment |
This image is one of several microservices that make up the Reloop backend. See the full list at hub.docker.com/u/reloopsh.
Content type
Image
Digest
sha256:7a6133577…
Size
282.6 MB
Last updated
about 12 hours ago
docker pull reloopsh/be-contacts