.do
Business Roles

bdr

Scale outbound sales with AI BDR agents that research prospects, personalize outreach, and book qualified meetings. Increase pipeline 10x while reducing cost per lead by 80%.

bdr

BDR.do

Overview

The bdr primitive is part of the .do platform's semantic API system. It follows the $.Subject.verb.Object pattern for consistent, intuitive interactions across SDK, CLI, API, and MCP interfaces.

Semantic Pattern

All bdr operations follow the semantic $.Bdr.verb.Object pattern:

import { $, bdr } from 'sdk.do'

// Create resources
await $.Bdr.create.Resource({ /* config */ })

// Query data
await $.Bdr.get.Data({ /* params */ })

// Update state
await $.Bdr.update.Status({ /* changes */ })

Quick Start

import { bdr } from 'sdk.do'

// Initialize and use the primitive
const result = await bdr.operation({
  // configuration parameters
})

Access Methods

The bdr primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

import { bdr } from 'sdk.do'
await bdr.method({ /* ... */ })

SDK Documentation

CLI

Command-line interface for terminal operations:

do bdr <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

curl -X POST https://api.do/v1/bdr \
  -H "Content-Type: application/json" \
  -d '{"key":"value"}'

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use bdr primitives with AI assistants via MCP

MCP Documentation

See other primitives in the business-roles category.