ABM Tutorials

Practical workflows built from what is implemented now, not aspirational features.

Tutorial 1: First ABM Automation in 15 Minutes

  1. Create an assistant using API key auth (`POST /assistants`).
  2. Create a thread (`POST /assistants/{owner}/{assistant_id}/threads`).
  3. Send a context-rich prompt into the thread (`POST /assistants/{owner}/{assistant_id}/threads/{thread_id}`).
  4. Create an automation for the assistant (`POST /assistants/{assistant_id}/automations`).
  5. Run/trigger and monitor automation state (`/run`, `/trigger`, `/pause`, `/resume`).
curl -X POST "https://api.laserreach.com/assistants" \
  -H "Authorization: Bearer <api_key>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "ABM Operator",
    "prompt": "You run outbound ABM workflows with strict grounding.",
    "model": "gpt-5.4-nano"
  }'