Skip to content
Sendora
Create account
Get started

Send your first event in five minutes.

This walks through creating a project, installing an SDK, and sending an event you'll see in the dashboard.

1. Create a project

Sign up at app.sendoracloud.com. In Settings → API Keys, you'll find a public key for client code and a secret key for server calls.

2. Install the SDK

npm install @sendoracloud/sdk-web

3. Identify the user

Identify calls create or update a profile. Traits upsert.

import { Sendora } from class="tk-s">"@sendoracloud/sdk-web";

const s = new Sendora({ publicKey: class="tk-s">"pk_live_..." });

s.identify(class="tk-s">"u_123", {
  email: class="tk-s">"sam@acme.co",
  plan: class="tk-s">"startup"
});

4. Track an event

s.track(class="tk-s">"order.placed", {
  order_id: class="tk-s">"ord_81",
  amount: class="tk-n">4200,
  currency: class="tk-s">"USD"
});

5. See it in the dashboard

Head to Dashboard → Events. Your event shows up within a second and is now visible to every other module.

Next steps

  • Set up a journey in Automation.
  • Wire a webhook to receive outbound events.
  • Add consent — see the Consent & Privacy module.