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.

Create run
$ 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.

Poll run
$ 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_business

Extract seller knowledge from uploaded context, website evidence, and external sources.

search_prospects

Find duplicate-aware prospect accounts from approved seller claims and public evidence.

research_prospects

Research prospects, score fit, collect evidence, and create reviewable research records.

generate_strategies

Create reviewable outreach strategy candidates from approved prospect research.

generate_drafts

Create reviewable email drafts from approved strategy and evidence.

generate_reply_draft

Draft a reply from synced inbound email context.

generate_follow_up_draft

Draft a no-reply follow-up from a sent draft and follow-up cadence.

research_prospect

Queued by review decisions or agent continuation for one prospect.

generate_strategy

Queued after a specific prospect research record is approved.

generate_draft

Queued after a specific strategy is approved.