惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Agent Accounts vs OAuth Grants: Which Does Your Agent Need?
Qasim Muhammad · 2026-06-15 · via DEV Community

Qasim Muhammad

Does your agent act on behalf of a person, or does it act as itself?

That one question decides most of your email architecture. Get it wrong and you end up fighting OAuth consent screens for a bot that never needed them, or routing a sales agent's replies into a human inbox where they sit unread. Nylas supports both models, and they're more different than they look from the API surface.

The two identities

An OAuth grant connects a real person's existing mailbox — Gmail, Outlook, or any IMAP account. The user consents, the agent reads and sends from their address, and replies land in their inbox. The agent is a tool the person is using.

An Agent Account is a Nylas-hosted mailbox your application creates and controls entirely through the API. It's a real name@company.com address that sends, receives, hosts calendar events, and RSVPs to invitations — indistinguishable from a human-operated account to anyone interacting with it. The agent is the identity. (Agent Accounts are currently in beta, so the API may change before general availability.)

The detail that matters: an Agent Account is just another grant. It gets a grant_id that works with every existing endpoint — Messages, Drafts, Threads, Folders, Calendars, Events, Webhooks. Your code barely changes between the two models. Your architecture changes a lot.

When the agent should borrow a human inbox

Pick an OAuth grant when the person is the point. An assistant that triages your unread mail, drafts replies you approve, and searches your history with provider-native syntax (from:billing@stripe.com, has:attachment) needs to operate as you. Messages it sends come from your address; replies come back to you. The share-your-email guide covers this pattern with the CLI:

nylas email list --unread --limit 10 --json
nylas email send --to "alice@example.com" --subject "Re: Server outage" \
  --body "Looking into this now." --yes

This model carries the costs of human identity: a consent flow, a token that can expire, and an integration that breaks when the user offboards.

When the agent needs its own address

Pick an Agent Account when the workflow is the point and no human inbox should be involved:

  • System mailboxes like sales-agent@ or support-agent@ that your app owns end-to-end
  • Replies that stay in the agent's inbox instead of clogging a human's
  • Persistent threaded conversations the agent owns — outreach, support triage, scheduling negotiation
  • Multi-agent deployments where each agent gets its own mailbox, domain, and sender reputation

Creation is one call. No consent screen, no refresh token — just an email address on a domain you've registered:

curl --request POST \
  --url "https://api.us.nylas.com/v3/connect/custom" \
  --header "Authorization: Bearer $NYLAS_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "provider": "nylas",
    "settings": { "email": "sales-agent@agents.yourcompany.com" }
  }'

The response includes a grant_id, and from that moment the account works with every grant-scoped endpoint, exactly like a connected grant. Register a message.created webhook and the agent gets notified the moment a reply arrives:

nylas webhook create \
  --url https://youragent.example.com/webhooks/nylas \
  --triggers "message.created,message.updated"

The give-your-agent-its-own-email guide walks through the full setup, including the polling alternative (GET /v3/grants/{grant_id}/messages?unread=true) if you'd rather not run a webhook endpoint yet.

The decision table

Question OAuth grant Agent Account
Whose address is on outbound mail? The user's The agent's own
Where do replies land? The user's inbox The agent's dedicated inbox
Setup flow OAuth consent per user One API call, no refresh token
What breaks it? Token expiry, user offboarding Nothing tied to a person
Guardrails Provider account settings Policies, rules, and lists via workspaces
Send limit Provider's limits 200 messages/account/day on the free plan; no daily cap by default on paid plans

That last row deserves a note: policies and rules attach to workspaces, not individual grants. Set a policy_id on a workspace and every Agent Account in it inherits the send quotas, attachment limits, and spam settings. Accounts you don't assign land in your application's default workspace.

Edge cases the table doesn't capture

A few details tend to surprise people the first time they switch models:

  • Threading comes for free on both sides. When someone replies to mail an Agent Account sent, Nylas groups it into the same thread using the In-Reply-To and References headers, and the message.created webhook payload carries a thread_id. Your agent matches a reply to its conversation without parsing a single header.
  • Humans can still supervise the agent's mailbox. An Agent Account isn't a black box: set an app_password on the grant and anyone you choose can open the same mailbox in Outlook or Apple Mail over standard IMAP and SMTP, alongside the API. With an OAuth grant, "supervision" means the human already owns the inbox — which is the point of that model.
  • Search syntax differs. OAuth grants give you the provider's native search (from:billing@stripe.com, has:attachment subject:invoice on Gmail, KQL on Microsoft). Agent Accounts are Nylas-hosted, so you filter with the standard Messages API query parameters instead.
  • The free plan has more limits than the send cap. Beyond 200 messages per account per day, the free plan gives 3 GB of storage per organization and retains inbox mail for 30 days (spam for 7). Outbound messages on any plan are capped at 40 MB total. None of this applies to OAuth grants — there the provider's own limits govern.

Quick answers

Does an Agent Account need OAuth scopes or a refresh token? No. Creation is the POST /v3/connect/custom call above with your API key; there's no consent flow and no token to refresh or rotate. That's also why nothing breaks when an employee leaves.

What does an Agent Account get at creation? A real mailbox with six system folders (inbox, sent, drafts, trash, junk, archive), a primary calendar that hosts events and RSVPs over standard iCalendar/ICS, and a grant_id for the existing endpoints.

Do I need a domain first? Yes — either a Nylas-provided *.nylas.email trial subdomain (instant, good for prototyping) or your own custom domain with MX and TXT records configured. One application can manage Agent Accounts across an unlimited number of registered domains.

You'll probably use both

These models aren't competitors. A support product might use OAuth grants so agents can draft replies inside each rep's real inbox, and an Agent Account for the autonomous support-agent@ address that handles tier-zero questions on its own. Same webhook handler, too — message.created payloads are identical in shape for both, and you can branch on the grant's provider field ("nylas" for Agent Accounts) to tell them apart.

The deeper pattern: borrowed identity for assistance, owned identity for autonomy. The more independently your agent operates — sending without per-message approval, holding multi-turn conversations, managing its own calendar — the stronger the case for giving it a first-class identity rather than a seat in someone else's mailbox.

The Agent Accounts overview covers capabilities and limits in detail, and the quickstart gets a sending-and-receiving mailbox running in under 5 minutes. Worth trying both flows back to back — the difference is hard to unsee.

Which model does your current agent use, and did you pick it deliberately or inherit it from a tutorial?