Command
nylas agent policy create
Create an Agent Account policy.
Written by Qasim Muhammad Staff SRE
What does nylas agent policy create do?
The nylas agent policy create command creates a policy object for Agent Accounts. Policies group rules that can block, archive, mark, or route messages before an AI agent or automation reads them. Use --name for a simple policy or --data-file when you need to supply the full JSON payload.
Usage
nylas agent policy create --name NAME [--json]Flags
| Flag | Description |
|---|---|
| --json | Output as JSON |
| --no-color | Disable color output |
| --verbose(-v) | Enable verbose output |
| --config | Custom config file path |
| --help(-h) | Show help for the command |
| --limit | Limit results (most list commands) |
| --yes(-y) | Skip confirmations |
| --name | Policy name |
| --data | Inline JSON policy data |
| --data-file | Path to a JSON file containing policy data |
Examples
Create a policy
nylas agent policy create --name openclaw-email-policy --jsonCreate from JSON
nylas agent policy create --data-file policy.json --jsonExample output
✓ Policy created (policy_abc123)
Name: Strict Policy
Rules: 1
Attach it with: nylas workspace update <workspace-id> --policy-id policy_abc123Troubleshooting
Policy payload rejected
Validate JSON before passing --data or --data-file. Start with --name when you only need an empty policy container.
Recommended guides
List Fastmail emails from the CLI
List Fastmail emails from the CLI through Nylas IMAP access, using app passwords, inbox filters, JSON output, and Fastmail-specific auth troubleshooting.
Thunderbird vs Nylas: GUI vs CLI email
Thunderbird is a desktop GUI email client with OAuth and calendar built in. Compare it to a scriptable, headless CLI for servers, cron jobs, and AI agents.
Why Cloud Servers Block SMTP Ports
AWS, GCP, and Azure block outbound SMTP port 25 while ports 587 and 465 stay open. Confirm the block and send email over an HTTPS API instead.
Send Email From a Docker Container
Cloud providers block SMTP port 25 from containers. Send email over an HTTPS API on port 443 with one command and no mail daemon at all.
MailerSend vs Nylas: Email Compared
MailerSend sends transactional email from verified domains. Nylas reads and syncs user inboxes across 6 providers. Compare features, pricing, and use cases.
Customer.io vs Nylas: Email Compared
Customer.io sends lifecycle emails to your user base. Nylas reads and sends from real user inboxes via OAuth. Compare use cases, pricing, and AI agent support.
Run nylas agent policy create --help for full help output.