Skip to main content

Receptors

Receptors are invoke gateways. Firing a receptor starts a neuron (agent) or pathway (workflow) run and returns a job you can poll or stream.

Mental model

SDK

const { receptor } = await auvy.receptors.get(workspaceSlug, 'support-bot')
const { job_id } = await auvy.receptors.fire(receptor.id, { message: 'Hello' })

HTTP

POST /v1/receptors/{id}/fire with JSON body. See Receptors API.

Share and public flows

Public receptors accept a share token (?t=...) instead of workspace membership. See Public API.