Runs
Queue named operations and then read the journey resource.
Runs are Vera's unit of agent work. They may complete asynchronously, return blockers, or create reviewable resources that external agents need to inspect.
Create run
Queue a public operation.
Use broad public operations to move the journey forward. Vera deduplicates active queued or running operations in the same family.
$ curl -X POST https://api-vera.symph.ai/v1/projects/proj_01hx6x9v2r/runs \
> -H "Authorization: Bearer vwk_live_..." \
> -H "Content-Type: application/json" \
> -d '{
> "operation": "search_prospects",
> "inputs": {
> "limit": 10,
> "refresh": false
> }
> }'Poll
Read run status and next actions.
A succeeded run is only the process result. After polling, read the related claims, prospects, research, strategies, drafts, messages, or schedules.
$ curl https://api-vera.symph.ai/v1/runs/run_01hx86cmfe \
> -H "Authorization: Bearer vwk_live_..."
$ curl https://api-vera.symph.ai/v1/projects/proj_01hx6x9v2r/next-actions \
> -H "Authorization: Bearer vwk_live_..."Operations
Public and child operations.
External agents can request the public operations below. Child operations may appear after review decisions or safe continuations.
discover_businessExtract seller knowledge from uploaded context, website evidence, and external sources.
search_prospectsFind duplicate-aware prospect accounts from approved seller claims and public evidence.
research_prospectsResearch prospects, score fit, collect evidence, and create reviewable research records.
generate_strategiesCreate reviewable outreach strategy candidates from approved prospect research.
generate_draftsCreate reviewable email drafts from approved strategy and evidence.
generate_reply_draftDraft a reply from synced inbound email context.
generate_follow_up_draftDraft a no-reply follow-up from a sent draft and follow-up cadence.
research_prospectQueued by review decisions or agent continuation for one prospect.
generate_strategyQueued after a specific prospect research record is approved.
generate_draftQueued after a specific strategy is approved.