ABM Tutorials
Practical workflows built from what is implemented now, not aspirational features.
Tutorial 1: First ABM Automation in 15 Minutes
- Create an assistant using API key auth (`POST /assistants`).
- Create a thread (`POST /assistants/{owner}/{assistant_id}/threads`).
- Send a context-rich prompt into the thread (`POST /assistants/{owner}/{assistant_id}/threads/{thread_id}`).
- Create an automation for the assistant (`POST /assistants/{assistant_id}/automations`).
- 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"
}'