JAMS Incident Management monitors signals you care about (failed batch jobs, server alerts, inbox keywords, API errors) and turns them into notifications β voice call, SMS, email, push, Microsoft Teams, or Slack β to the right people, with retries and escalation if no one acknowledges.
This walkthrough takes you from a fresh login to a working alert in about five minutes.
1. Confirm your contact details
Open Team Members and find your own record. Make sure your email and phone number are correct β these are what JAMS Incident Management will call, SMS, or email when an alert fires.
If your phone number is missing, add it now. Phone numbers should be in international format (e.g. +12025550123 for the US β the + and country code matter). Save.
Why this matters first: the most common first-flow failure is "I built it, but nothing reached me." Eight times out of ten it's because the test user's phone number was missing or formatted wrong.
2. Decide how you want to build your first flow
Two paths:
- AI Helper β describe what you want in plain English ("Alert me if an email arrives from
prod-alerts@example.comwith the word 'CRITICAL' in the subject"). JAMS Incident Management drafts the flow and you confirm. Fastest path. - Manual flow builder β choose what to monitor first, then name the flow and configure that source, then pick recipients, channels, and escalation. More control.
For a first test, AI Helper is easiest. See the Using AI Helper article for the prompts that work best.
3. Pick a simple trigger
If this is your first flow, skip anything that requires external setup (JAMS, Azure Monitor, IMAP). Use the simplest trigger: a webhook. JAMS Incident Management gives you a URL; anything that can POST to that URL fires the flow.
If you use AI Helper, type:
"Alert me by SMS when something hits this webhook"
It'll build a webhook flow and show you the URL to call.
4. Pick yourself as the recipient
Add your own Team Member record as the recipient. Channel = SMS (fastest to test) or Call. Skip Email for the first test β emails are slower to get attention.
5. Save the flow and trigger it
Once the flow is saved, JAMS Incident Management shows you the webhook URL. Copy it. From any terminal:
curl -X POST <your-webhook-url> \
-H "Content-Type: application/json" \
-d '{"apiKey":"<key>","message":"hello world"}'
The key goes in the JSON body as apiKey (not a header), and you need a non-empty message. Generate the key in the Webhook API Keys section shown on the flow page, and make sure the flow is active β an inactive flow rejects the webhook.
Within seconds, your phone should ring or buzz with the SMS.
When you answer the call or click the link in the SMS to acknowledge, JAMS Incident Management records the ack and the flow stops escalating.
6. Check what happened
Open Notifications to see the delivery β when it was sent, which channel was used, how long until you acknowledged. Open Incidents for a higher-level view if the trigger created one.
If something didn't work, see Troubleshooting.
What's next
Once you have one working flow, the rest of JAMS Incident Management is variations on the same theme:
- More triggers: Connect IMAP for email-based alerts, Azure Monitor, JAMS
- More recipients: Invite teammates, organize into Team Groups, set up on-call rotations
- Set up SSO so your team logs in via your existing IdP: SSO setup
- AI Helper for the next 80% of flow creation: Using AI Helper
Most teams get their first flow live in 5β10 minutes. The next 20 flows tend to be much faster β copy + tweak rather than starting fresh.