[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-cli-reference":3,"mdc--1wnwpg-key":33,"related-org-twilio-twilio-cli-reference":2423,"related-repo-twilio-twilio-cli-reference":2597},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"twilio-cli-reference","manage Twilio resources via CLI","Twilio CLI reference for managing Twilio resources from the terminal. Covers installation, credential profiles, phone number provisioning, sending SMS and email, webhook configuration, local development with a tunneling service, debugging with watch and logs, serverless deployment, and plugin ecosystem. Use when the developer asks to \"just do it\", \"set this up\", \"run a command\", mentions \"CLI\", \"command line\", or \"terminal\", or when an AI agent can execute a task directly instead of writing application code.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"twilio","Twilio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftwilio.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Operations","operations","tag",{"name":17,"slug":18,"type":15},"Local Development","local-development",{"name":20,"slug":21,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:07:54.925664",null,7,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\u002Ftwilio-cli-reference","---\nname: twilio-cli-reference\ndescription: >\n  Twilio CLI reference for managing Twilio resources from the terminal.\n  Covers installation, credential profiles, phone number provisioning,\n  sending SMS and email, webhook configuration, local development with\n  a tunneling service, debugging with watch and logs, serverless deployment, and\n  plugin ecosystem. Use when the developer asks to \"just do it\",\n  \"set this up\", \"run a command\", mentions \"CLI\", \"command line\", or\n  \"terminal\", or when an AI agent can execute a task directly instead\n  of writing application code.\n---\n\n## Overview\n\nThe Twilio CLI lets you manage Twilio resources, send messages, configure webhooks, and deploy serverless functions directly from the terminal. AI coding agents can use CLI commands to provision resources and test integrations without writing application code.\n\n**Install:**\n\n| Platform | Command |\n|----------|---------|\n| macOS | `brew tap twilio\u002Fbrew && brew install twilio` |\n| Windows | `scoop bucket add twilio-scoop https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fscoop-twilio-cli && scoop install twilio-cli` |\n| Linux (apt) | See `twilio-cli\u002Fgetting-started\u002Finstall` for repo setup, then `apt install twilio` |\n| npm | `npm install -g twilio-cli` |\n\n**Update:** `brew upgrade twilio` \u002F `scoop update twilio-cli` \u002F `npm install -g twilio-cli@latest`\n\n---\n\n## Authentication & Profiles\n\n```bash\n# First-time login — creates a local API key stored as a profile\ntwilio login\n\n# Named profiles for multiple accounts\ntwilio profiles:create --account-sid ACxxx --auth-token xxx --profile staging\n# Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead.\ntwilio profiles:list\ntwilio profiles:use staging\n\n# Run a single command against a different profile\ntwilio api:core:messages:list -p production\n\n# Subaccount access\ntwilio api:core:messages:list --account-sid ACxxx_SUBACCOUNT\n```\n\n**Credential priority:** explicit `-p`\u002F`--account-sid` flag > env vars (`TWILIO_ACCOUNT_SID`, `TWILIO_AUTH_TOKEN`) > active profile.\n\n---\n\n## Phone Numbers\n\n```bash\n# Search available numbers (US local, area code 415)\ntwilio api:core:available-phone-numbers:local:list --country-code US --area-code 415\n\n# Purchase a number\ntwilio api:core:incoming-phone-numbers:create --phone-number \"+14155551234\"\n\n# List owned numbers\ntwilio phone-numbers:list\n\n# Set webhooks on a number\ntwilio phone-numbers:update +14155551234 \\\n  --sms-url \"https:\u002F\u002Fexample.com\u002Fsms\" \\\n  --voice-url \"https:\u002F\u002Fexample.com\u002Fvoice\"\n```\n\n---\n\n## Send SMS\n\n```bash\ntwilio api:core:messages:create \\\n  --from \"+14155551234\" \\\n  --to \"+14155556789\" \\\n  --body \"Your order has shipped.\"\n\n# List recent messages\ntwilio api:core:messages:list --to \"+14155556789\" --limit 10\n```\n\n---\n\n## Send Email (SendGrid)\n\nRequires `SENDGRID_API_KEY` environment variable.\n\n```bash\n# Configure defaults\ntwilio email:set --from \"noreply@example.com\" --subject \"Default Subject\"\n\n# Send email\ntwilio email:send \\\n  --to \"user@example.com\" \\\n  --subject \"Invoice attached\" \\\n  --text \"Please find your invoice.\" \\\n  --attachment .\u002Finvoice.pdf\n\n# Pipe output as email body\nps aux | twilio email:send --to \"ops@example.com\" --subject \"Process list\"\n```\n\n---\n\n## Webhook Development\n\n```bash\n# Set webhook URLs on a number\ntwilio phone-numbers:update +14155551234 --sms-url \"https:\u002F\u002Fyour-tunnel-url.example.com\u002Fsms\"\n\n# Emulate webhook events locally (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-webhook\ntwilio webhook:invoke http:\u002F\u002Flocalhost:3000\u002Fsms --type sms\n```\n\n**Local development:** The CLI rejects `localhost` URLs directly. Tunneling services such as ngrok are not bundled with twilio-cli. install one separately, then set the public tunnel URL as your webhook. \n\n** ngrok is NOT included in the CLI — install separately: npm install -g ngrok\n  or via https:\u002F\u002Fngrok.com                                                      \n  - Start tunnel: ngrok http 3000, then use the provided URL for webhook        \n  configuration   \n---\n\n## Debugging & Monitoring\n\n```bash\n# Debug logging on any command (logs to stderr)\ntwilio api:core:messages:create --from +14155551234 --to +14155556789 --body \"test\" -l debug\n\n# Real-time monitoring (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-watch\ntwilio watch                    # stream debugger alerts, calls, messages in real time\n\n# Output formatting\ntwilio api:core:messages:list -o json             # JSON output\ntwilio api:core:messages:list -o tsv              # tab-separated\ntwilio api:core:messages:list --properties sid,status,direction  # select columns\ntwilio api:core:messages:list --limit 200         # override default 50-record cap\n```\n\n---\n\n## Serverless Deployment\n\n```bash\ntwilio plugins:install @twilio-labs\u002Fplugin-serverless\n\n# Create a new Functions project\ntwilio serverless:init my-project --template blank\ncd my-project\n\n# Local development\ntwilio serverless:start          # serves functions at localhost:3000\n\n# Deploy to Twilio\ntwilio serverless:deploy\n```\n\n---\n\n## Plugins\n\n```bash\ntwilio plugins:install \u003Cpackage>\ntwilio plugins:list\ntwilio plugins:remove \u003Cpackage>\n```\n\n| Plugin | What it does |\n|--------|-------------|\n| `@twilio-labs\u002Fplugin-serverless` | Develop and deploy Twilio Functions and Assets |\n| `@twilio-labs\u002Fplugin-dev-phone` | Test SMS\u002FVoice without a real phone |\n| `@twilio-labs\u002Fplugin-watch` | Real-time monitoring of debugger alerts, calls, messages |\n| `@twilio-labs\u002Fplugin-token` | Generate client-side SDK tokens (Voice, Chat, Video) |\n| `@twilio-labs\u002Fplugin-assets` | Upload static resources |\n| `@twilio-labs\u002Fplugin-webhook` | Emulate webhook events for local testing |\n| `@twilio-labs\u002Fplugin-flex` | Create, build, deploy Flex plugins |\n\n---\n\n## Regional & Edge Routing\n\n```bash\n# Login to a specific region\ntwilio login --region au1 --edge sydney\n\n# Set edge globally\ntwilio config:set --edge=sydney\n\n# Or via env vars\nexport TWILIO_REGION=au1\nexport TWILIO_EDGE=sydney\n```\n\nSupported: `au1`\u002F`sydney`, `ie1`\u002F`dublin`, `jp1`\u002F`tokyo`. Each region uses a different Auth Token from your US1 credentials. Find yours in the Twilio Console under API keys & tokens, selecting your target region.\n\n---\n\n## Configuration\n\n```bash\ntwilio config:list                          # show all settings\ntwilio config:set --edge=sydney             # set default edge\ntwilio config:set --require-profile-input   # prompt before using active profile\n```\n\nConfig stored at `~\u002F.twilio-cli\u002Fconfig.json`.\n\n**Syntax notes:**\n- Commands use spaces by default, using colon also works: `twilio api core messages create` = `twilio api:core:messages:create`\n- `twilio [COMMAND] --help` for any command's options\n- Multi-line: use `\\` for line continuation\n\n---\n\n## CANNOT\n\n- **Default list limit is 50 records** — always pass `--limit` for larger result sets.\n- **API timeout is 30 seconds** — long-running operations may fail silently.\n- **Cannot use localhost URLs for webhooks** — use a tunneling service, such as ngrok, installed separately.\n- **No autocomplete on Windows** — only bash\u002Fzsh supported.\n- ** ngrok is not bundled with twilio-cli**, install separately\n- **Cannot send Twilio Email (comms API) via CLI** — `twilio email:send` uses SendGrid only. For Twilio Email, use the REST API directly.\n\n---\n\n## Next Steps\n\n- **Account setup and API keys:** `twilio-account-setup`, `twilio-iam-auth-setup`\n- **Webhook architecture and signature validation:** `twilio-webhook-architecture`\n- **Debugging and observability:** `twilio-debugging-observability`\n- **Send SMS via API\u002FSDK:** `twilio-send-message`\n- **SendGrid email setup:** `twilio-sendgrid-account-setup`\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,62,169,200,204,210,426,468,471,477,685,688,694,840,843,849,862,1119,1122,1128,1235,1253,1266,1282,1285,1291,1527,1530,1536,1674,1677,1683,1761,1902,1905,1911,2050,2098,2101,2107,2173,2186,2194,2240,2243,2249,2323,2326,2332,2417],{"type":39,"tag":40,"props":41,"children":43},"element","h2",{"id":42},"overview",[44],{"type":45,"value":46},"text","Overview",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"The Twilio CLI lets you manage Twilio resources, send messages, configure webhooks, and deploy serverless functions directly from the terminal. AI coding agents can use CLI commands to provision resources and test integrations without writing application code.",{"type":39,"tag":48,"props":54,"children":55},{},[56],{"type":39,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":45,"value":61},"Install:",{"type":39,"tag":63,"props":64,"children":65},"table",{},[66,85],{"type":39,"tag":67,"props":68,"children":69},"thead",{},[70],{"type":39,"tag":71,"props":72,"children":73},"tr",{},[74,80],{"type":39,"tag":75,"props":76,"children":77},"th",{},[78],{"type":45,"value":79},"Platform",{"type":39,"tag":75,"props":81,"children":82},{},[83],{"type":45,"value":84},"Command",{"type":39,"tag":86,"props":87,"children":88},"tbody",{},[89,108,125,152],{"type":39,"tag":71,"props":90,"children":91},{},[92,98],{"type":39,"tag":93,"props":94,"children":95},"td",{},[96],{"type":45,"value":97},"macOS",{"type":39,"tag":93,"props":99,"children":100},{},[101],{"type":39,"tag":102,"props":103,"children":105},"code",{"className":104},[],[106],{"type":45,"value":107},"brew tap twilio\u002Fbrew && brew install twilio",{"type":39,"tag":71,"props":109,"children":110},{},[111,116],{"type":39,"tag":93,"props":112,"children":113},{},[114],{"type":45,"value":115},"Windows",{"type":39,"tag":93,"props":117,"children":118},{},[119],{"type":39,"tag":102,"props":120,"children":122},{"className":121},[],[123],{"type":45,"value":124},"scoop bucket add twilio-scoop https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fscoop-twilio-cli && scoop install twilio-cli",{"type":39,"tag":71,"props":126,"children":127},{},[128,133],{"type":39,"tag":93,"props":129,"children":130},{},[131],{"type":45,"value":132},"Linux (apt)",{"type":39,"tag":93,"props":134,"children":135},{},[136,138,144,146],{"type":45,"value":137},"See ",{"type":39,"tag":102,"props":139,"children":141},{"className":140},[],[142],{"type":45,"value":143},"twilio-cli\u002Fgetting-started\u002Finstall",{"type":45,"value":145}," for repo setup, then ",{"type":39,"tag":102,"props":147,"children":149},{"className":148},[],[150],{"type":45,"value":151},"apt install twilio",{"type":39,"tag":71,"props":153,"children":154},{},[155,160],{"type":39,"tag":93,"props":156,"children":157},{},[158],{"type":45,"value":159},"npm",{"type":39,"tag":93,"props":161,"children":162},{},[163],{"type":39,"tag":102,"props":164,"children":166},{"className":165},[],[167],{"type":45,"value":168},"npm install -g twilio-cli",{"type":39,"tag":48,"props":170,"children":171},{},[172,177,179,185,187,193,194],{"type":39,"tag":57,"props":173,"children":174},{},[175],{"type":45,"value":176},"Update:",{"type":45,"value":178}," ",{"type":39,"tag":102,"props":180,"children":182},{"className":181},[],[183],{"type":45,"value":184},"brew upgrade twilio",{"type":45,"value":186}," \u002F ",{"type":39,"tag":102,"props":188,"children":190},{"className":189},[],[191],{"type":45,"value":192},"scoop update twilio-cli",{"type":45,"value":186},{"type":39,"tag":102,"props":195,"children":197},{"className":196},[],[198],{"type":45,"value":199},"npm install -g twilio-cli@latest",{"type":39,"tag":201,"props":202,"children":203},"hr",{},[],{"type":39,"tag":40,"props":205,"children":207},{"id":206},"authentication-profiles",[208],{"type":45,"value":209},"Authentication & Profiles",{"type":39,"tag":211,"props":212,"children":217},"pre",{"className":213,"code":214,"language":215,"meta":216,"style":216},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# First-time login — creates a local API key stored as a profile\ntwilio login\n\n# Named profiles for multiple accounts\ntwilio profiles:create --account-sid ACxxx --auth-token xxx --profile staging\n# Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead.\ntwilio profiles:list\ntwilio profiles:use staging\n\n# Run a single command against a different profile\ntwilio api:core:messages:list -p production\n\n# Subaccount access\ntwilio api:core:messages:list --account-sid ACxxx_SUBACCOUNT\n","bash","",[218],{"type":39,"tag":102,"props":219,"children":220},{"__ignoreMap":216},[221,233,248,258,267,310,319,331,348,356,365,388,396,405],{"type":39,"tag":222,"props":223,"children":226},"span",{"class":224,"line":225},"line",1,[227],{"type":39,"tag":222,"props":228,"children":230},{"style":229},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[231],{"type":45,"value":232},"# First-time login — creates a local API key stored as a profile\n",{"type":39,"tag":222,"props":234,"children":236},{"class":224,"line":235},2,[237,242],{"type":39,"tag":222,"props":238,"children":240},{"style":239},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[241],{"type":45,"value":8},{"type":39,"tag":222,"props":243,"children":245},{"style":244},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[246],{"type":45,"value":247}," login\n",{"type":39,"tag":222,"props":249,"children":251},{"class":224,"line":250},3,[252],{"type":39,"tag":222,"props":253,"children":255},{"emptyLinePlaceholder":254},true,[256],{"type":45,"value":257},"\n",{"type":39,"tag":222,"props":259,"children":261},{"class":224,"line":260},4,[262],{"type":39,"tag":222,"props":263,"children":264},{"style":229},[265],{"type":45,"value":266},"# Named profiles for multiple accounts\n",{"type":39,"tag":222,"props":268,"children":270},{"class":224,"line":269},5,[271,275,280,285,290,295,300,305],{"type":39,"tag":222,"props":272,"children":273},{"style":239},[274],{"type":45,"value":8},{"type":39,"tag":222,"props":276,"children":277},{"style":244},[278],{"type":45,"value":279}," profiles:create",{"type":39,"tag":222,"props":281,"children":282},{"style":244},[283],{"type":45,"value":284}," --account-sid",{"type":39,"tag":222,"props":286,"children":287},{"style":244},[288],{"type":45,"value":289}," ACxxx",{"type":39,"tag":222,"props":291,"children":292},{"style":244},[293],{"type":45,"value":294}," --auth-token",{"type":39,"tag":222,"props":296,"children":297},{"style":244},[298],{"type":45,"value":299}," xxx",{"type":39,"tag":222,"props":301,"children":302},{"style":244},[303],{"type":45,"value":304}," --profile",{"type":39,"tag":222,"props":306,"children":307},{"style":244},[308],{"type":45,"value":309}," staging\n",{"type":39,"tag":222,"props":311,"children":313},{"class":224,"line":312},6,[314],{"type":39,"tag":222,"props":315,"children":316},{"style":229},[317],{"type":45,"value":318},"# Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead.\n",{"type":39,"tag":222,"props":320,"children":321},{"class":224,"line":27},[322,326],{"type":39,"tag":222,"props":323,"children":324},{"style":239},[325],{"type":45,"value":8},{"type":39,"tag":222,"props":327,"children":328},{"style":244},[329],{"type":45,"value":330}," profiles:list\n",{"type":39,"tag":222,"props":332,"children":334},{"class":224,"line":333},8,[335,339,344],{"type":39,"tag":222,"props":336,"children":337},{"style":239},[338],{"type":45,"value":8},{"type":39,"tag":222,"props":340,"children":341},{"style":244},[342],{"type":45,"value":343}," profiles:use",{"type":39,"tag":222,"props":345,"children":346},{"style":244},[347],{"type":45,"value":309},{"type":39,"tag":222,"props":349,"children":351},{"class":224,"line":350},9,[352],{"type":39,"tag":222,"props":353,"children":354},{"emptyLinePlaceholder":254},[355],{"type":45,"value":257},{"type":39,"tag":222,"props":357,"children":359},{"class":224,"line":358},10,[360],{"type":39,"tag":222,"props":361,"children":362},{"style":229},[363],{"type":45,"value":364},"# Run a single command against a different profile\n",{"type":39,"tag":222,"props":366,"children":368},{"class":224,"line":367},11,[369,373,378,383],{"type":39,"tag":222,"props":370,"children":371},{"style":239},[372],{"type":45,"value":8},{"type":39,"tag":222,"props":374,"children":375},{"style":244},[376],{"type":45,"value":377}," api:core:messages:list",{"type":39,"tag":222,"props":379,"children":380},{"style":244},[381],{"type":45,"value":382}," -p",{"type":39,"tag":222,"props":384,"children":385},{"style":244},[386],{"type":45,"value":387}," production\n",{"type":39,"tag":222,"props":389,"children":391},{"class":224,"line":390},12,[392],{"type":39,"tag":222,"props":393,"children":394},{"emptyLinePlaceholder":254},[395],{"type":45,"value":257},{"type":39,"tag":222,"props":397,"children":399},{"class":224,"line":398},13,[400],{"type":39,"tag":222,"props":401,"children":402},{"style":229},[403],{"type":45,"value":404},"# Subaccount access\n",{"type":39,"tag":222,"props":406,"children":408},{"class":224,"line":407},14,[409,413,417,421],{"type":39,"tag":222,"props":410,"children":411},{"style":239},[412],{"type":45,"value":8},{"type":39,"tag":222,"props":414,"children":415},{"style":244},[416],{"type":45,"value":377},{"type":39,"tag":222,"props":418,"children":419},{"style":244},[420],{"type":45,"value":284},{"type":39,"tag":222,"props":422,"children":423},{"style":244},[424],{"type":45,"value":425}," ACxxx_SUBACCOUNT\n",{"type":39,"tag":48,"props":427,"children":428},{},[429,434,436,442,444,450,452,458,460,466],{"type":39,"tag":57,"props":430,"children":431},{},[432],{"type":45,"value":433},"Credential priority:",{"type":45,"value":435}," explicit ",{"type":39,"tag":102,"props":437,"children":439},{"className":438},[],[440],{"type":45,"value":441},"-p",{"type":45,"value":443},"\u002F",{"type":39,"tag":102,"props":445,"children":447},{"className":446},[],[448],{"type":45,"value":449},"--account-sid",{"type":45,"value":451}," flag > env vars (",{"type":39,"tag":102,"props":453,"children":455},{"className":454},[],[456],{"type":45,"value":457},"TWILIO_ACCOUNT_SID",{"type":45,"value":459},", ",{"type":39,"tag":102,"props":461,"children":463},{"className":462},[],[464],{"type":45,"value":465},"TWILIO_AUTH_TOKEN",{"type":45,"value":467},") > active profile.",{"type":39,"tag":201,"props":469,"children":470},{},[],{"type":39,"tag":40,"props":472,"children":474},{"id":473},"phone-numbers",[475],{"type":45,"value":476},"Phone Numbers",{"type":39,"tag":211,"props":478,"children":480},{"className":213,"code":479,"language":215,"meta":216,"style":216},"# Search available numbers (US local, area code 415)\ntwilio api:core:available-phone-numbers:local:list --country-code US --area-code 415\n\n# Purchase a number\ntwilio api:core:incoming-phone-numbers:create --phone-number \"+14155551234\"\n\n# List owned numbers\ntwilio phone-numbers:list\n\n# Set webhooks on a number\ntwilio phone-numbers:update +14155551234 \\\n  --sms-url \"https:\u002F\u002Fexample.com\u002Fsms\" \\\n  --voice-url \"https:\u002F\u002Fexample.com\u002Fvoice\"\n",[481],{"type":39,"tag":102,"props":482,"children":483},{"__ignoreMap":216},[484,492,525,532,540,573,580,588,600,607,615,638,664],{"type":39,"tag":222,"props":485,"children":486},{"class":224,"line":225},[487],{"type":39,"tag":222,"props":488,"children":489},{"style":229},[490],{"type":45,"value":491},"# Search available numbers (US local, area code 415)\n",{"type":39,"tag":222,"props":493,"children":494},{"class":224,"line":235},[495,499,504,509,514,519],{"type":39,"tag":222,"props":496,"children":497},{"style":239},[498],{"type":45,"value":8},{"type":39,"tag":222,"props":500,"children":501},{"style":244},[502],{"type":45,"value":503}," api:core:available-phone-numbers:local:list",{"type":39,"tag":222,"props":505,"children":506},{"style":244},[507],{"type":45,"value":508}," --country-code",{"type":39,"tag":222,"props":510,"children":511},{"style":244},[512],{"type":45,"value":513}," US",{"type":39,"tag":222,"props":515,"children":516},{"style":244},[517],{"type":45,"value":518}," --area-code",{"type":39,"tag":222,"props":520,"children":522},{"style":521},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[523],{"type":45,"value":524}," 415\n",{"type":39,"tag":222,"props":526,"children":527},{"class":224,"line":250},[528],{"type":39,"tag":222,"props":529,"children":530},{"emptyLinePlaceholder":254},[531],{"type":45,"value":257},{"type":39,"tag":222,"props":533,"children":534},{"class":224,"line":260},[535],{"type":39,"tag":222,"props":536,"children":537},{"style":229},[538],{"type":45,"value":539},"# Purchase a number\n",{"type":39,"tag":222,"props":541,"children":542},{"class":224,"line":269},[543,547,552,557,563,568],{"type":39,"tag":222,"props":544,"children":545},{"style":239},[546],{"type":45,"value":8},{"type":39,"tag":222,"props":548,"children":549},{"style":244},[550],{"type":45,"value":551}," api:core:incoming-phone-numbers:create",{"type":39,"tag":222,"props":553,"children":554},{"style":244},[555],{"type":45,"value":556}," --phone-number",{"type":39,"tag":222,"props":558,"children":560},{"style":559},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[561],{"type":45,"value":562}," \"",{"type":39,"tag":222,"props":564,"children":565},{"style":244},[566],{"type":45,"value":567},"+14155551234",{"type":39,"tag":222,"props":569,"children":570},{"style":559},[571],{"type":45,"value":572},"\"\n",{"type":39,"tag":222,"props":574,"children":575},{"class":224,"line":312},[576],{"type":39,"tag":222,"props":577,"children":578},{"emptyLinePlaceholder":254},[579],{"type":45,"value":257},{"type":39,"tag":222,"props":581,"children":582},{"class":224,"line":27},[583],{"type":39,"tag":222,"props":584,"children":585},{"style":229},[586],{"type":45,"value":587},"# List owned numbers\n",{"type":39,"tag":222,"props":589,"children":590},{"class":224,"line":333},[591,595],{"type":39,"tag":222,"props":592,"children":593},{"style":239},[594],{"type":45,"value":8},{"type":39,"tag":222,"props":596,"children":597},{"style":244},[598],{"type":45,"value":599}," phone-numbers:list\n",{"type":39,"tag":222,"props":601,"children":602},{"class":224,"line":350},[603],{"type":39,"tag":222,"props":604,"children":605},{"emptyLinePlaceholder":254},[606],{"type":45,"value":257},{"type":39,"tag":222,"props":608,"children":609},{"class":224,"line":358},[610],{"type":39,"tag":222,"props":611,"children":612},{"style":229},[613],{"type":45,"value":614},"# Set webhooks on a number\n",{"type":39,"tag":222,"props":616,"children":617},{"class":224,"line":367},[618,622,627,632],{"type":39,"tag":222,"props":619,"children":620},{"style":239},[621],{"type":45,"value":8},{"type":39,"tag":222,"props":623,"children":624},{"style":244},[625],{"type":45,"value":626}," phone-numbers:update",{"type":39,"tag":222,"props":628,"children":629},{"style":244},[630],{"type":45,"value":631}," +14155551234",{"type":39,"tag":222,"props":633,"children":635},{"style":634},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[636],{"type":45,"value":637}," \\\n",{"type":39,"tag":222,"props":639,"children":640},{"class":224,"line":390},[641,646,650,655,660],{"type":39,"tag":222,"props":642,"children":643},{"style":244},[644],{"type":45,"value":645},"  --sms-url",{"type":39,"tag":222,"props":647,"children":648},{"style":559},[649],{"type":45,"value":562},{"type":39,"tag":222,"props":651,"children":652},{"style":244},[653],{"type":45,"value":654},"https:\u002F\u002Fexample.com\u002Fsms",{"type":39,"tag":222,"props":656,"children":657},{"style":559},[658],{"type":45,"value":659},"\"",{"type":39,"tag":222,"props":661,"children":662},{"style":634},[663],{"type":45,"value":637},{"type":39,"tag":222,"props":665,"children":666},{"class":224,"line":398},[667,672,676,681],{"type":39,"tag":222,"props":668,"children":669},{"style":244},[670],{"type":45,"value":671},"  --voice-url",{"type":39,"tag":222,"props":673,"children":674},{"style":559},[675],{"type":45,"value":562},{"type":39,"tag":222,"props":677,"children":678},{"style":244},[679],{"type":45,"value":680},"https:\u002F\u002Fexample.com\u002Fvoice",{"type":39,"tag":222,"props":682,"children":683},{"style":559},[684],{"type":45,"value":572},{"type":39,"tag":201,"props":686,"children":687},{},[],{"type":39,"tag":40,"props":689,"children":691},{"id":690},"send-sms",[692],{"type":45,"value":693},"Send SMS",{"type":39,"tag":211,"props":695,"children":697},{"className":213,"code":696,"language":215,"meta":216,"style":216},"twilio api:core:messages:create \\\n  --from \"+14155551234\" \\\n  --to \"+14155556789\" \\\n  --body \"Your order has shipped.\"\n\n# List recent messages\ntwilio api:core:messages:list --to \"+14155556789\" --limit 10\n",[698],{"type":39,"tag":102,"props":699,"children":700},{"__ignoreMap":216},[701,717,741,766,787,794,802],{"type":39,"tag":222,"props":702,"children":703},{"class":224,"line":225},[704,708,713],{"type":39,"tag":222,"props":705,"children":706},{"style":239},[707],{"type":45,"value":8},{"type":39,"tag":222,"props":709,"children":710},{"style":244},[711],{"type":45,"value":712}," api:core:messages:create",{"type":39,"tag":222,"props":714,"children":715},{"style":634},[716],{"type":45,"value":637},{"type":39,"tag":222,"props":718,"children":719},{"class":224,"line":235},[720,725,729,733,737],{"type":39,"tag":222,"props":721,"children":722},{"style":244},[723],{"type":45,"value":724},"  --from",{"type":39,"tag":222,"props":726,"children":727},{"style":559},[728],{"type":45,"value":562},{"type":39,"tag":222,"props":730,"children":731},{"style":244},[732],{"type":45,"value":567},{"type":39,"tag":222,"props":734,"children":735},{"style":559},[736],{"type":45,"value":659},{"type":39,"tag":222,"props":738,"children":739},{"style":634},[740],{"type":45,"value":637},{"type":39,"tag":222,"props":742,"children":743},{"class":224,"line":250},[744,749,753,758,762],{"type":39,"tag":222,"props":745,"children":746},{"style":244},[747],{"type":45,"value":748},"  --to",{"type":39,"tag":222,"props":750,"children":751},{"style":559},[752],{"type":45,"value":562},{"type":39,"tag":222,"props":754,"children":755},{"style":244},[756],{"type":45,"value":757},"+14155556789",{"type":39,"tag":222,"props":759,"children":760},{"style":559},[761],{"type":45,"value":659},{"type":39,"tag":222,"props":763,"children":764},{"style":634},[765],{"type":45,"value":637},{"type":39,"tag":222,"props":767,"children":768},{"class":224,"line":260},[769,774,778,783],{"type":39,"tag":222,"props":770,"children":771},{"style":244},[772],{"type":45,"value":773},"  --body",{"type":39,"tag":222,"props":775,"children":776},{"style":559},[777],{"type":45,"value":562},{"type":39,"tag":222,"props":779,"children":780},{"style":244},[781],{"type":45,"value":782},"Your order has shipped.",{"type":39,"tag":222,"props":784,"children":785},{"style":559},[786],{"type":45,"value":572},{"type":39,"tag":222,"props":788,"children":789},{"class":224,"line":269},[790],{"type":39,"tag":222,"props":791,"children":792},{"emptyLinePlaceholder":254},[793],{"type":45,"value":257},{"type":39,"tag":222,"props":795,"children":796},{"class":224,"line":312},[797],{"type":39,"tag":222,"props":798,"children":799},{"style":229},[800],{"type":45,"value":801},"# List recent messages\n",{"type":39,"tag":222,"props":803,"children":804},{"class":224,"line":27},[805,809,813,818,822,826,830,835],{"type":39,"tag":222,"props":806,"children":807},{"style":239},[808],{"type":45,"value":8},{"type":39,"tag":222,"props":810,"children":811},{"style":244},[812],{"type":45,"value":377},{"type":39,"tag":222,"props":814,"children":815},{"style":244},[816],{"type":45,"value":817}," --to",{"type":39,"tag":222,"props":819,"children":820},{"style":559},[821],{"type":45,"value":562},{"type":39,"tag":222,"props":823,"children":824},{"style":244},[825],{"type":45,"value":757},{"type":39,"tag":222,"props":827,"children":828},{"style":559},[829],{"type":45,"value":659},{"type":39,"tag":222,"props":831,"children":832},{"style":244},[833],{"type":45,"value":834}," --limit",{"type":39,"tag":222,"props":836,"children":837},{"style":521},[838],{"type":45,"value":839}," 10\n",{"type":39,"tag":201,"props":841,"children":842},{},[],{"type":39,"tag":40,"props":844,"children":846},{"id":845},"send-email-sendgrid",[847],{"type":45,"value":848},"Send Email (SendGrid)",{"type":39,"tag":48,"props":850,"children":851},{},[852,854,860],{"type":45,"value":853},"Requires ",{"type":39,"tag":102,"props":855,"children":857},{"className":856},[],[858],{"type":45,"value":859},"SENDGRID_API_KEY",{"type":45,"value":861}," environment variable.",{"type":39,"tag":211,"props":863,"children":865},{"className":213,"code":864,"language":215,"meta":216,"style":216},"# Configure defaults\ntwilio email:set --from \"noreply@example.com\" --subject \"Default Subject\"\n\n# Send email\ntwilio email:send \\\n  --to \"user@example.com\" \\\n  --subject \"Invoice attached\" \\\n  --text \"Please find your invoice.\" \\\n  --attachment .\u002Finvoice.pdf\n\n# Pipe output as email body\nps aux | twilio email:send --to \"ops@example.com\" --subject \"Process list\"\n",[866],{"type":39,"tag":102,"props":867,"children":868},{"__ignoreMap":216},[869,877,925,932,940,956,980,1005,1030,1043,1050,1058],{"type":39,"tag":222,"props":870,"children":871},{"class":224,"line":225},[872],{"type":39,"tag":222,"props":873,"children":874},{"style":229},[875],{"type":45,"value":876},"# Configure defaults\n",{"type":39,"tag":222,"props":878,"children":879},{"class":224,"line":235},[880,884,889,894,898,903,907,912,916,921],{"type":39,"tag":222,"props":881,"children":882},{"style":239},[883],{"type":45,"value":8},{"type":39,"tag":222,"props":885,"children":886},{"style":244},[887],{"type":45,"value":888}," email:set",{"type":39,"tag":222,"props":890,"children":891},{"style":244},[892],{"type":45,"value":893}," --from",{"type":39,"tag":222,"props":895,"children":896},{"style":559},[897],{"type":45,"value":562},{"type":39,"tag":222,"props":899,"children":900},{"style":244},[901],{"type":45,"value":902},"noreply@example.com",{"type":39,"tag":222,"props":904,"children":905},{"style":559},[906],{"type":45,"value":659},{"type":39,"tag":222,"props":908,"children":909},{"style":244},[910],{"type":45,"value":911}," --subject",{"type":39,"tag":222,"props":913,"children":914},{"style":559},[915],{"type":45,"value":562},{"type":39,"tag":222,"props":917,"children":918},{"style":244},[919],{"type":45,"value":920},"Default Subject",{"type":39,"tag":222,"props":922,"children":923},{"style":559},[924],{"type":45,"value":572},{"type":39,"tag":222,"props":926,"children":927},{"class":224,"line":250},[928],{"type":39,"tag":222,"props":929,"children":930},{"emptyLinePlaceholder":254},[931],{"type":45,"value":257},{"type":39,"tag":222,"props":933,"children":934},{"class":224,"line":260},[935],{"type":39,"tag":222,"props":936,"children":937},{"style":229},[938],{"type":45,"value":939},"# Send email\n",{"type":39,"tag":222,"props":941,"children":942},{"class":224,"line":269},[943,947,952],{"type":39,"tag":222,"props":944,"children":945},{"style":239},[946],{"type":45,"value":8},{"type":39,"tag":222,"props":948,"children":949},{"style":244},[950],{"type":45,"value":951}," email:send",{"type":39,"tag":222,"props":953,"children":954},{"style":634},[955],{"type":45,"value":637},{"type":39,"tag":222,"props":957,"children":958},{"class":224,"line":312},[959,963,967,972,976],{"type":39,"tag":222,"props":960,"children":961},{"style":244},[962],{"type":45,"value":748},{"type":39,"tag":222,"props":964,"children":965},{"style":559},[966],{"type":45,"value":562},{"type":39,"tag":222,"props":968,"children":969},{"style":244},[970],{"type":45,"value":971},"user@example.com",{"type":39,"tag":222,"props":973,"children":974},{"style":559},[975],{"type":45,"value":659},{"type":39,"tag":222,"props":977,"children":978},{"style":634},[979],{"type":45,"value":637},{"type":39,"tag":222,"props":981,"children":982},{"class":224,"line":27},[983,988,992,997,1001],{"type":39,"tag":222,"props":984,"children":985},{"style":244},[986],{"type":45,"value":987},"  --subject",{"type":39,"tag":222,"props":989,"children":990},{"style":559},[991],{"type":45,"value":562},{"type":39,"tag":222,"props":993,"children":994},{"style":244},[995],{"type":45,"value":996},"Invoice attached",{"type":39,"tag":222,"props":998,"children":999},{"style":559},[1000],{"type":45,"value":659},{"type":39,"tag":222,"props":1002,"children":1003},{"style":634},[1004],{"type":45,"value":637},{"type":39,"tag":222,"props":1006,"children":1007},{"class":224,"line":333},[1008,1013,1017,1022,1026],{"type":39,"tag":222,"props":1009,"children":1010},{"style":244},[1011],{"type":45,"value":1012},"  --text",{"type":39,"tag":222,"props":1014,"children":1015},{"style":559},[1016],{"type":45,"value":562},{"type":39,"tag":222,"props":1018,"children":1019},{"style":244},[1020],{"type":45,"value":1021},"Please find your invoice.",{"type":39,"tag":222,"props":1023,"children":1024},{"style":559},[1025],{"type":45,"value":659},{"type":39,"tag":222,"props":1027,"children":1028},{"style":634},[1029],{"type":45,"value":637},{"type":39,"tag":222,"props":1031,"children":1032},{"class":224,"line":350},[1033,1038],{"type":39,"tag":222,"props":1034,"children":1035},{"style":244},[1036],{"type":45,"value":1037},"  --attachment",{"type":39,"tag":222,"props":1039,"children":1040},{"style":244},[1041],{"type":45,"value":1042}," .\u002Finvoice.pdf\n",{"type":39,"tag":222,"props":1044,"children":1045},{"class":224,"line":358},[1046],{"type":39,"tag":222,"props":1047,"children":1048},{"emptyLinePlaceholder":254},[1049],{"type":45,"value":257},{"type":39,"tag":222,"props":1051,"children":1052},{"class":224,"line":367},[1053],{"type":39,"tag":222,"props":1054,"children":1055},{"style":229},[1056],{"type":45,"value":1057},"# Pipe output as email body\n",{"type":39,"tag":222,"props":1059,"children":1060},{"class":224,"line":390},[1061,1066,1071,1076,1081,1085,1089,1093,1098,1102,1106,1110,1115],{"type":39,"tag":222,"props":1062,"children":1063},{"style":239},[1064],{"type":45,"value":1065},"ps",{"type":39,"tag":222,"props":1067,"children":1068},{"style":244},[1069],{"type":45,"value":1070}," aux",{"type":39,"tag":222,"props":1072,"children":1073},{"style":559},[1074],{"type":45,"value":1075}," |",{"type":39,"tag":222,"props":1077,"children":1078},{"style":239},[1079],{"type":45,"value":1080}," twilio",{"type":39,"tag":222,"props":1082,"children":1083},{"style":244},[1084],{"type":45,"value":951},{"type":39,"tag":222,"props":1086,"children":1087},{"style":244},[1088],{"type":45,"value":817},{"type":39,"tag":222,"props":1090,"children":1091},{"style":559},[1092],{"type":45,"value":562},{"type":39,"tag":222,"props":1094,"children":1095},{"style":244},[1096],{"type":45,"value":1097},"ops@example.com",{"type":39,"tag":222,"props":1099,"children":1100},{"style":559},[1101],{"type":45,"value":659},{"type":39,"tag":222,"props":1103,"children":1104},{"style":244},[1105],{"type":45,"value":911},{"type":39,"tag":222,"props":1107,"children":1108},{"style":559},[1109],{"type":45,"value":562},{"type":39,"tag":222,"props":1111,"children":1112},{"style":244},[1113],{"type":45,"value":1114},"Process list",{"type":39,"tag":222,"props":1116,"children":1117},{"style":559},[1118],{"type":45,"value":572},{"type":39,"tag":201,"props":1120,"children":1121},{},[],{"type":39,"tag":40,"props":1123,"children":1125},{"id":1124},"webhook-development",[1126],{"type":45,"value":1127},"Webhook Development",{"type":39,"tag":211,"props":1129,"children":1131},{"className":213,"code":1130,"language":215,"meta":216,"style":216},"# Set webhook URLs on a number\ntwilio phone-numbers:update +14155551234 --sms-url \"https:\u002F\u002Fyour-tunnel-url.example.com\u002Fsms\"\n\n# Emulate webhook events locally (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-webhook\ntwilio webhook:invoke http:\u002F\u002Flocalhost:3000\u002Fsms --type sms\n",[1132],{"type":39,"tag":102,"props":1133,"children":1134},{"__ignoreMap":216},[1135,1143,1176,1183,1191,1208],{"type":39,"tag":222,"props":1136,"children":1137},{"class":224,"line":225},[1138],{"type":39,"tag":222,"props":1139,"children":1140},{"style":229},[1141],{"type":45,"value":1142},"# Set webhook URLs on a number\n",{"type":39,"tag":222,"props":1144,"children":1145},{"class":224,"line":235},[1146,1150,1154,1158,1163,1167,1172],{"type":39,"tag":222,"props":1147,"children":1148},{"style":239},[1149],{"type":45,"value":8},{"type":39,"tag":222,"props":1151,"children":1152},{"style":244},[1153],{"type":45,"value":626},{"type":39,"tag":222,"props":1155,"children":1156},{"style":244},[1157],{"type":45,"value":631},{"type":39,"tag":222,"props":1159,"children":1160},{"style":244},[1161],{"type":45,"value":1162}," --sms-url",{"type":39,"tag":222,"props":1164,"children":1165},{"style":559},[1166],{"type":45,"value":562},{"type":39,"tag":222,"props":1168,"children":1169},{"style":244},[1170],{"type":45,"value":1171},"https:\u002F\u002Fyour-tunnel-url.example.com\u002Fsms",{"type":39,"tag":222,"props":1173,"children":1174},{"style":559},[1175],{"type":45,"value":572},{"type":39,"tag":222,"props":1177,"children":1178},{"class":224,"line":250},[1179],{"type":39,"tag":222,"props":1180,"children":1181},{"emptyLinePlaceholder":254},[1182],{"type":45,"value":257},{"type":39,"tag":222,"props":1184,"children":1185},{"class":224,"line":260},[1186],{"type":39,"tag":222,"props":1187,"children":1188},{"style":229},[1189],{"type":45,"value":1190},"# Emulate webhook events locally (requires plugin)\n",{"type":39,"tag":222,"props":1192,"children":1193},{"class":224,"line":269},[1194,1198,1203],{"type":39,"tag":222,"props":1195,"children":1196},{"style":239},[1197],{"type":45,"value":8},{"type":39,"tag":222,"props":1199,"children":1200},{"style":244},[1201],{"type":45,"value":1202}," plugins:install",{"type":39,"tag":222,"props":1204,"children":1205},{"style":244},[1206],{"type":45,"value":1207}," @twilio-labs\u002Fplugin-webhook\n",{"type":39,"tag":222,"props":1209,"children":1210},{"class":224,"line":312},[1211,1215,1220,1225,1230],{"type":39,"tag":222,"props":1212,"children":1213},{"style":239},[1214],{"type":45,"value":8},{"type":39,"tag":222,"props":1216,"children":1217},{"style":244},[1218],{"type":45,"value":1219}," webhook:invoke",{"type":39,"tag":222,"props":1221,"children":1222},{"style":244},[1223],{"type":45,"value":1224}," http:\u002F\u002Flocalhost:3000\u002Fsms",{"type":39,"tag":222,"props":1226,"children":1227},{"style":244},[1228],{"type":45,"value":1229}," --type",{"type":39,"tag":222,"props":1231,"children":1232},{"style":244},[1233],{"type":45,"value":1234}," sms\n",{"type":39,"tag":48,"props":1236,"children":1237},{},[1238,1243,1245,1251],{"type":39,"tag":57,"props":1239,"children":1240},{},[1241],{"type":45,"value":1242},"Local development:",{"type":45,"value":1244}," The CLI rejects ",{"type":39,"tag":102,"props":1246,"children":1248},{"className":1247},[],[1249],{"type":45,"value":1250},"localhost",{"type":45,"value":1252}," URLs directly. Tunneling services such as ngrok are not bundled with twilio-cli. install one separately, then set the public tunnel URL as your webhook.",{"type":39,"tag":48,"props":1254,"children":1255},{},[1256,1258],{"type":45,"value":1257},"** ngrok is NOT included in the CLI — install separately: npm install -g ngrok\nor via ",{"type":39,"tag":1259,"props":1260,"children":1264},"a",{"href":1261,"rel":1262},"https:\u002F\u002Fngrok.com",[1263],"nofollow",[1265],{"type":45,"value":1261},{"type":39,"tag":1267,"props":1268,"children":1269},"ul",{},[1270],{"type":39,"tag":1271,"props":1272,"children":1273},"li",{},[1274,1276,1280],{"type":45,"value":1275},"Start tunnel: ngrok http 3000, then use the provided URL for webhook",{"type":39,"tag":1277,"props":1278,"children":1279},"br",{},[],{"type":45,"value":1281},"\nconfiguration",{"type":39,"tag":201,"props":1283,"children":1284},{},[],{"type":39,"tag":40,"props":1286,"children":1288},{"id":1287},"debugging-monitoring",[1289],{"type":45,"value":1290},"Debugging & Monitoring",{"type":39,"tag":211,"props":1292,"children":1294},{"className":213,"code":1293,"language":215,"meta":216,"style":216},"# Debug logging on any command (logs to stderr)\ntwilio api:core:messages:create --from +14155551234 --to +14155556789 --body \"test\" -l debug\n\n# Real-time monitoring (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-watch\ntwilio watch                    # stream debugger alerts, calls, messages in real time\n\n# Output formatting\ntwilio api:core:messages:list -o json             # JSON output\ntwilio api:core:messages:list -o tsv              # tab-separated\ntwilio api:core:messages:list --properties sid,status,direction  # select columns\ntwilio api:core:messages:list --limit 200         # override default 50-record cap\n",[1295],{"type":39,"tag":102,"props":1296,"children":1297},{"__ignoreMap":216},[1298,1306,1362,1369,1377,1393,1410,1417,1425,1451,1476,1502],{"type":39,"tag":222,"props":1299,"children":1300},{"class":224,"line":225},[1301],{"type":39,"tag":222,"props":1302,"children":1303},{"style":229},[1304],{"type":45,"value":1305},"# Debug logging on any command (logs to stderr)\n",{"type":39,"tag":222,"props":1307,"children":1308},{"class":224,"line":235},[1309,1313,1317,1321,1325,1329,1334,1339,1343,1348,1352,1357],{"type":39,"tag":222,"props":1310,"children":1311},{"style":239},[1312],{"type":45,"value":8},{"type":39,"tag":222,"props":1314,"children":1315},{"style":244},[1316],{"type":45,"value":712},{"type":39,"tag":222,"props":1318,"children":1319},{"style":244},[1320],{"type":45,"value":893},{"type":39,"tag":222,"props":1322,"children":1323},{"style":244},[1324],{"type":45,"value":631},{"type":39,"tag":222,"props":1326,"children":1327},{"style":244},[1328],{"type":45,"value":817},{"type":39,"tag":222,"props":1330,"children":1331},{"style":244},[1332],{"type":45,"value":1333}," +14155556789",{"type":39,"tag":222,"props":1335,"children":1336},{"style":244},[1337],{"type":45,"value":1338}," --body",{"type":39,"tag":222,"props":1340,"children":1341},{"style":559},[1342],{"type":45,"value":562},{"type":39,"tag":222,"props":1344,"children":1345},{"style":244},[1346],{"type":45,"value":1347},"test",{"type":39,"tag":222,"props":1349,"children":1350},{"style":559},[1351],{"type":45,"value":659},{"type":39,"tag":222,"props":1353,"children":1354},{"style":244},[1355],{"type":45,"value":1356}," -l",{"type":39,"tag":222,"props":1358,"children":1359},{"style":244},[1360],{"type":45,"value":1361}," debug\n",{"type":39,"tag":222,"props":1363,"children":1364},{"class":224,"line":250},[1365],{"type":39,"tag":222,"props":1366,"children":1367},{"emptyLinePlaceholder":254},[1368],{"type":45,"value":257},{"type":39,"tag":222,"props":1370,"children":1371},{"class":224,"line":260},[1372],{"type":39,"tag":222,"props":1373,"children":1374},{"style":229},[1375],{"type":45,"value":1376},"# Real-time monitoring (requires plugin)\n",{"type":39,"tag":222,"props":1378,"children":1379},{"class":224,"line":269},[1380,1384,1388],{"type":39,"tag":222,"props":1381,"children":1382},{"style":239},[1383],{"type":45,"value":8},{"type":39,"tag":222,"props":1385,"children":1386},{"style":244},[1387],{"type":45,"value":1202},{"type":39,"tag":222,"props":1389,"children":1390},{"style":244},[1391],{"type":45,"value":1392}," @twilio-labs\u002Fplugin-watch\n",{"type":39,"tag":222,"props":1394,"children":1395},{"class":224,"line":312},[1396,1400,1405],{"type":39,"tag":222,"props":1397,"children":1398},{"style":239},[1399],{"type":45,"value":8},{"type":39,"tag":222,"props":1401,"children":1402},{"style":244},[1403],{"type":45,"value":1404}," watch",{"type":39,"tag":222,"props":1406,"children":1407},{"style":229},[1408],{"type":45,"value":1409},"                    # stream debugger alerts, calls, messages in real time\n",{"type":39,"tag":222,"props":1411,"children":1412},{"class":224,"line":27},[1413],{"type":39,"tag":222,"props":1414,"children":1415},{"emptyLinePlaceholder":254},[1416],{"type":45,"value":257},{"type":39,"tag":222,"props":1418,"children":1419},{"class":224,"line":333},[1420],{"type":39,"tag":222,"props":1421,"children":1422},{"style":229},[1423],{"type":45,"value":1424},"# Output formatting\n",{"type":39,"tag":222,"props":1426,"children":1427},{"class":224,"line":350},[1428,1432,1436,1441,1446],{"type":39,"tag":222,"props":1429,"children":1430},{"style":239},[1431],{"type":45,"value":8},{"type":39,"tag":222,"props":1433,"children":1434},{"style":244},[1435],{"type":45,"value":377},{"type":39,"tag":222,"props":1437,"children":1438},{"style":244},[1439],{"type":45,"value":1440}," -o",{"type":39,"tag":222,"props":1442,"children":1443},{"style":244},[1444],{"type":45,"value":1445}," json",{"type":39,"tag":222,"props":1447,"children":1448},{"style":229},[1449],{"type":45,"value":1450},"             # JSON output\n",{"type":39,"tag":222,"props":1452,"children":1453},{"class":224,"line":358},[1454,1458,1462,1466,1471],{"type":39,"tag":222,"props":1455,"children":1456},{"style":239},[1457],{"type":45,"value":8},{"type":39,"tag":222,"props":1459,"children":1460},{"style":244},[1461],{"type":45,"value":377},{"type":39,"tag":222,"props":1463,"children":1464},{"style":244},[1465],{"type":45,"value":1440},{"type":39,"tag":222,"props":1467,"children":1468},{"style":244},[1469],{"type":45,"value":1470}," tsv",{"type":39,"tag":222,"props":1472,"children":1473},{"style":229},[1474],{"type":45,"value":1475},"              # tab-separated\n",{"type":39,"tag":222,"props":1477,"children":1478},{"class":224,"line":367},[1479,1483,1487,1492,1497],{"type":39,"tag":222,"props":1480,"children":1481},{"style":239},[1482],{"type":45,"value":8},{"type":39,"tag":222,"props":1484,"children":1485},{"style":244},[1486],{"type":45,"value":377},{"type":39,"tag":222,"props":1488,"children":1489},{"style":244},[1490],{"type":45,"value":1491}," --properties",{"type":39,"tag":222,"props":1493,"children":1494},{"style":244},[1495],{"type":45,"value":1496}," sid,status,direction",{"type":39,"tag":222,"props":1498,"children":1499},{"style":229},[1500],{"type":45,"value":1501},"  # select columns\n",{"type":39,"tag":222,"props":1503,"children":1504},{"class":224,"line":390},[1505,1509,1513,1517,1522],{"type":39,"tag":222,"props":1506,"children":1507},{"style":239},[1508],{"type":45,"value":8},{"type":39,"tag":222,"props":1510,"children":1511},{"style":244},[1512],{"type":45,"value":377},{"type":39,"tag":222,"props":1514,"children":1515},{"style":244},[1516],{"type":45,"value":834},{"type":39,"tag":222,"props":1518,"children":1519},{"style":521},[1520],{"type":45,"value":1521}," 200",{"type":39,"tag":222,"props":1523,"children":1524},{"style":229},[1525],{"type":45,"value":1526},"         # override default 50-record cap\n",{"type":39,"tag":201,"props":1528,"children":1529},{},[],{"type":39,"tag":40,"props":1531,"children":1533},{"id":1532},"serverless-deployment",[1534],{"type":45,"value":1535},"Serverless Deployment",{"type":39,"tag":211,"props":1537,"children":1539},{"className":213,"code":1538,"language":215,"meta":216,"style":216},"twilio plugins:install @twilio-labs\u002Fplugin-serverless\n\n# Create a new Functions project\ntwilio serverless:init my-project --template blank\ncd my-project\n\n# Local development\ntwilio serverless:start          # serves functions at localhost:3000\n\n# Deploy to Twilio\ntwilio serverless:deploy\n",[1540],{"type":39,"tag":102,"props":1541,"children":1542},{"__ignoreMap":216},[1543,1559,1566,1574,1601,1615,1622,1630,1647,1654,1662],{"type":39,"tag":222,"props":1544,"children":1545},{"class":224,"line":225},[1546,1550,1554],{"type":39,"tag":222,"props":1547,"children":1548},{"style":239},[1549],{"type":45,"value":8},{"type":39,"tag":222,"props":1551,"children":1552},{"style":244},[1553],{"type":45,"value":1202},{"type":39,"tag":222,"props":1555,"children":1556},{"style":244},[1557],{"type":45,"value":1558}," @twilio-labs\u002Fplugin-serverless\n",{"type":39,"tag":222,"props":1560,"children":1561},{"class":224,"line":235},[1562],{"type":39,"tag":222,"props":1563,"children":1564},{"emptyLinePlaceholder":254},[1565],{"type":45,"value":257},{"type":39,"tag":222,"props":1567,"children":1568},{"class":224,"line":250},[1569],{"type":39,"tag":222,"props":1570,"children":1571},{"style":229},[1572],{"type":45,"value":1573},"# Create a new Functions project\n",{"type":39,"tag":222,"props":1575,"children":1576},{"class":224,"line":260},[1577,1581,1586,1591,1596],{"type":39,"tag":222,"props":1578,"children":1579},{"style":239},[1580],{"type":45,"value":8},{"type":39,"tag":222,"props":1582,"children":1583},{"style":244},[1584],{"type":45,"value":1585}," serverless:init",{"type":39,"tag":222,"props":1587,"children":1588},{"style":244},[1589],{"type":45,"value":1590}," my-project",{"type":39,"tag":222,"props":1592,"children":1593},{"style":244},[1594],{"type":45,"value":1595}," --template",{"type":39,"tag":222,"props":1597,"children":1598},{"style":244},[1599],{"type":45,"value":1600}," blank\n",{"type":39,"tag":222,"props":1602,"children":1603},{"class":224,"line":269},[1604,1610],{"type":39,"tag":222,"props":1605,"children":1607},{"style":1606},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1608],{"type":45,"value":1609},"cd",{"type":39,"tag":222,"props":1611,"children":1612},{"style":244},[1613],{"type":45,"value":1614}," my-project\n",{"type":39,"tag":222,"props":1616,"children":1617},{"class":224,"line":312},[1618],{"type":39,"tag":222,"props":1619,"children":1620},{"emptyLinePlaceholder":254},[1621],{"type":45,"value":257},{"type":39,"tag":222,"props":1623,"children":1624},{"class":224,"line":27},[1625],{"type":39,"tag":222,"props":1626,"children":1627},{"style":229},[1628],{"type":45,"value":1629},"# Local development\n",{"type":39,"tag":222,"props":1631,"children":1632},{"class":224,"line":333},[1633,1637,1642],{"type":39,"tag":222,"props":1634,"children":1635},{"style":239},[1636],{"type":45,"value":8},{"type":39,"tag":222,"props":1638,"children":1639},{"style":244},[1640],{"type":45,"value":1641}," serverless:start",{"type":39,"tag":222,"props":1643,"children":1644},{"style":229},[1645],{"type":45,"value":1646},"          # serves functions at localhost:3000\n",{"type":39,"tag":222,"props":1648,"children":1649},{"class":224,"line":350},[1650],{"type":39,"tag":222,"props":1651,"children":1652},{"emptyLinePlaceholder":254},[1653],{"type":45,"value":257},{"type":39,"tag":222,"props":1655,"children":1656},{"class":224,"line":358},[1657],{"type":39,"tag":222,"props":1658,"children":1659},{"style":229},[1660],{"type":45,"value":1661},"# Deploy to Twilio\n",{"type":39,"tag":222,"props":1663,"children":1664},{"class":224,"line":367},[1665,1669],{"type":39,"tag":222,"props":1666,"children":1667},{"style":239},[1668],{"type":45,"value":8},{"type":39,"tag":222,"props":1670,"children":1671},{"style":244},[1672],{"type":45,"value":1673}," serverless:deploy\n",{"type":39,"tag":201,"props":1675,"children":1676},{},[],{"type":39,"tag":40,"props":1678,"children":1680},{"id":1679},"plugins",[1681],{"type":45,"value":1682},"Plugins",{"type":39,"tag":211,"props":1684,"children":1686},{"className":213,"code":1685,"language":215,"meta":216,"style":216},"twilio plugins:install \u003Cpackage>\ntwilio plugins:list\ntwilio plugins:remove \u003Cpackage>\n",[1687],{"type":39,"tag":102,"props":1688,"children":1689},{"__ignoreMap":216},[1690,1721,1733],{"type":39,"tag":222,"props":1691,"children":1692},{"class":224,"line":225},[1693,1697,1701,1706,1711,1716],{"type":39,"tag":222,"props":1694,"children":1695},{"style":239},[1696],{"type":45,"value":8},{"type":39,"tag":222,"props":1698,"children":1699},{"style":244},[1700],{"type":45,"value":1202},{"type":39,"tag":222,"props":1702,"children":1703},{"style":559},[1704],{"type":45,"value":1705}," \u003C",{"type":39,"tag":222,"props":1707,"children":1708},{"style":244},[1709],{"type":45,"value":1710},"packag",{"type":39,"tag":222,"props":1712,"children":1713},{"style":634},[1714],{"type":45,"value":1715},"e",{"type":39,"tag":222,"props":1717,"children":1718},{"style":559},[1719],{"type":45,"value":1720},">\n",{"type":39,"tag":222,"props":1722,"children":1723},{"class":224,"line":235},[1724,1728],{"type":39,"tag":222,"props":1725,"children":1726},{"style":239},[1727],{"type":45,"value":8},{"type":39,"tag":222,"props":1729,"children":1730},{"style":244},[1731],{"type":45,"value":1732}," plugins:list\n",{"type":39,"tag":222,"props":1734,"children":1735},{"class":224,"line":250},[1736,1740,1745,1749,1753,1757],{"type":39,"tag":222,"props":1737,"children":1738},{"style":239},[1739],{"type":45,"value":8},{"type":39,"tag":222,"props":1741,"children":1742},{"style":244},[1743],{"type":45,"value":1744}," plugins:remove",{"type":39,"tag":222,"props":1746,"children":1747},{"style":559},[1748],{"type":45,"value":1705},{"type":39,"tag":222,"props":1750,"children":1751},{"style":244},[1752],{"type":45,"value":1710},{"type":39,"tag":222,"props":1754,"children":1755},{"style":634},[1756],{"type":45,"value":1715},{"type":39,"tag":222,"props":1758,"children":1759},{"style":559},[1760],{"type":45,"value":1720},{"type":39,"tag":63,"props":1762,"children":1763},{},[1764,1780],{"type":39,"tag":67,"props":1765,"children":1766},{},[1767],{"type":39,"tag":71,"props":1768,"children":1769},{},[1770,1775],{"type":39,"tag":75,"props":1771,"children":1772},{},[1773],{"type":45,"value":1774},"Plugin",{"type":39,"tag":75,"props":1776,"children":1777},{},[1778],{"type":45,"value":1779},"What it does",{"type":39,"tag":86,"props":1781,"children":1782},{},[1783,1800,1817,1834,1851,1868,1885],{"type":39,"tag":71,"props":1784,"children":1785},{},[1786,1795],{"type":39,"tag":93,"props":1787,"children":1788},{},[1789],{"type":39,"tag":102,"props":1790,"children":1792},{"className":1791},[],[1793],{"type":45,"value":1794},"@twilio-labs\u002Fplugin-serverless",{"type":39,"tag":93,"props":1796,"children":1797},{},[1798],{"type":45,"value":1799},"Develop and deploy Twilio Functions and Assets",{"type":39,"tag":71,"props":1801,"children":1802},{},[1803,1812],{"type":39,"tag":93,"props":1804,"children":1805},{},[1806],{"type":39,"tag":102,"props":1807,"children":1809},{"className":1808},[],[1810],{"type":45,"value":1811},"@twilio-labs\u002Fplugin-dev-phone",{"type":39,"tag":93,"props":1813,"children":1814},{},[1815],{"type":45,"value":1816},"Test SMS\u002FVoice without a real phone",{"type":39,"tag":71,"props":1818,"children":1819},{},[1820,1829],{"type":39,"tag":93,"props":1821,"children":1822},{},[1823],{"type":39,"tag":102,"props":1824,"children":1826},{"className":1825},[],[1827],{"type":45,"value":1828},"@twilio-labs\u002Fplugin-watch",{"type":39,"tag":93,"props":1830,"children":1831},{},[1832],{"type":45,"value":1833},"Real-time monitoring of debugger alerts, calls, messages",{"type":39,"tag":71,"props":1835,"children":1836},{},[1837,1846],{"type":39,"tag":93,"props":1838,"children":1839},{},[1840],{"type":39,"tag":102,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":45,"value":1845},"@twilio-labs\u002Fplugin-token",{"type":39,"tag":93,"props":1847,"children":1848},{},[1849],{"type":45,"value":1850},"Generate client-side SDK tokens (Voice, Chat, Video)",{"type":39,"tag":71,"props":1852,"children":1853},{},[1854,1863],{"type":39,"tag":93,"props":1855,"children":1856},{},[1857],{"type":39,"tag":102,"props":1858,"children":1860},{"className":1859},[],[1861],{"type":45,"value":1862},"@twilio-labs\u002Fplugin-assets",{"type":39,"tag":93,"props":1864,"children":1865},{},[1866],{"type":45,"value":1867},"Upload static resources",{"type":39,"tag":71,"props":1869,"children":1870},{},[1871,1880],{"type":39,"tag":93,"props":1872,"children":1873},{},[1874],{"type":39,"tag":102,"props":1875,"children":1877},{"className":1876},[],[1878],{"type":45,"value":1879},"@twilio-labs\u002Fplugin-webhook",{"type":39,"tag":93,"props":1881,"children":1882},{},[1883],{"type":45,"value":1884},"Emulate webhook events for local testing",{"type":39,"tag":71,"props":1886,"children":1887},{},[1888,1897],{"type":39,"tag":93,"props":1889,"children":1890},{},[1891],{"type":39,"tag":102,"props":1892,"children":1894},{"className":1893},[],[1895],{"type":45,"value":1896},"@twilio-labs\u002Fplugin-flex",{"type":39,"tag":93,"props":1898,"children":1899},{},[1900],{"type":45,"value":1901},"Create, build, deploy Flex plugins",{"type":39,"tag":201,"props":1903,"children":1904},{},[],{"type":39,"tag":40,"props":1906,"children":1908},{"id":1907},"regional-edge-routing",[1909],{"type":45,"value":1910},"Regional & Edge Routing",{"type":39,"tag":211,"props":1912,"children":1914},{"className":213,"code":1913,"language":215,"meta":216,"style":216},"# Login to a specific region\ntwilio login --region au1 --edge sydney\n\n# Set edge globally\ntwilio config:set --edge=sydney\n\n# Or via env vars\nexport TWILIO_REGION=au1\nexport TWILIO_EDGE=sydney\n",[1915],{"type":39,"tag":102,"props":1916,"children":1917},{"__ignoreMap":216},[1918,1926,1958,1965,1973,1990,1997,2005,2029],{"type":39,"tag":222,"props":1919,"children":1920},{"class":224,"line":225},[1921],{"type":39,"tag":222,"props":1922,"children":1923},{"style":229},[1924],{"type":45,"value":1925},"# Login to a specific region\n",{"type":39,"tag":222,"props":1927,"children":1928},{"class":224,"line":235},[1929,1933,1938,1943,1948,1953],{"type":39,"tag":222,"props":1930,"children":1931},{"style":239},[1932],{"type":45,"value":8},{"type":39,"tag":222,"props":1934,"children":1935},{"style":244},[1936],{"type":45,"value":1937}," login",{"type":39,"tag":222,"props":1939,"children":1940},{"style":244},[1941],{"type":45,"value":1942}," --region",{"type":39,"tag":222,"props":1944,"children":1945},{"style":244},[1946],{"type":45,"value":1947}," au1",{"type":39,"tag":222,"props":1949,"children":1950},{"style":244},[1951],{"type":45,"value":1952}," --edge",{"type":39,"tag":222,"props":1954,"children":1955},{"style":244},[1956],{"type":45,"value":1957}," sydney\n",{"type":39,"tag":222,"props":1959,"children":1960},{"class":224,"line":250},[1961],{"type":39,"tag":222,"props":1962,"children":1963},{"emptyLinePlaceholder":254},[1964],{"type":45,"value":257},{"type":39,"tag":222,"props":1966,"children":1967},{"class":224,"line":260},[1968],{"type":39,"tag":222,"props":1969,"children":1970},{"style":229},[1971],{"type":45,"value":1972},"# Set edge globally\n",{"type":39,"tag":222,"props":1974,"children":1975},{"class":224,"line":269},[1976,1980,1985],{"type":39,"tag":222,"props":1977,"children":1978},{"style":239},[1979],{"type":45,"value":8},{"type":39,"tag":222,"props":1981,"children":1982},{"style":244},[1983],{"type":45,"value":1984}," config:set",{"type":39,"tag":222,"props":1986,"children":1987},{"style":244},[1988],{"type":45,"value":1989}," --edge=sydney\n",{"type":39,"tag":222,"props":1991,"children":1992},{"class":224,"line":312},[1993],{"type":39,"tag":222,"props":1994,"children":1995},{"emptyLinePlaceholder":254},[1996],{"type":45,"value":257},{"type":39,"tag":222,"props":1998,"children":1999},{"class":224,"line":27},[2000],{"type":39,"tag":222,"props":2001,"children":2002},{"style":229},[2003],{"type":45,"value":2004},"# Or via env vars\n",{"type":39,"tag":222,"props":2006,"children":2007},{"class":224,"line":333},[2008,2014,2019,2024],{"type":39,"tag":222,"props":2009,"children":2011},{"style":2010},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2012],{"type":45,"value":2013},"export",{"type":39,"tag":222,"props":2015,"children":2016},{"style":634},[2017],{"type":45,"value":2018}," TWILIO_REGION",{"type":39,"tag":222,"props":2020,"children":2021},{"style":559},[2022],{"type":45,"value":2023},"=",{"type":39,"tag":222,"props":2025,"children":2026},{"style":634},[2027],{"type":45,"value":2028},"au1\n",{"type":39,"tag":222,"props":2030,"children":2031},{"class":224,"line":350},[2032,2036,2041,2045],{"type":39,"tag":222,"props":2033,"children":2034},{"style":2010},[2035],{"type":45,"value":2013},{"type":39,"tag":222,"props":2037,"children":2038},{"style":634},[2039],{"type":45,"value":2040}," TWILIO_EDGE",{"type":39,"tag":222,"props":2042,"children":2043},{"style":559},[2044],{"type":45,"value":2023},{"type":39,"tag":222,"props":2046,"children":2047},{"style":634},[2048],{"type":45,"value":2049},"sydney\n",{"type":39,"tag":48,"props":2051,"children":2052},{},[2053,2055,2061,2062,2068,2069,2075,2076,2082,2083,2089,2090,2096],{"type":45,"value":2054},"Supported: ",{"type":39,"tag":102,"props":2056,"children":2058},{"className":2057},[],[2059],{"type":45,"value":2060},"au1",{"type":45,"value":443},{"type":39,"tag":102,"props":2063,"children":2065},{"className":2064},[],[2066],{"type":45,"value":2067},"sydney",{"type":45,"value":459},{"type":39,"tag":102,"props":2070,"children":2072},{"className":2071},[],[2073],{"type":45,"value":2074},"ie1",{"type":45,"value":443},{"type":39,"tag":102,"props":2077,"children":2079},{"className":2078},[],[2080],{"type":45,"value":2081},"dublin",{"type":45,"value":459},{"type":39,"tag":102,"props":2084,"children":2086},{"className":2085},[],[2087],{"type":45,"value":2088},"jp1",{"type":45,"value":443},{"type":39,"tag":102,"props":2091,"children":2093},{"className":2092},[],[2094],{"type":45,"value":2095},"tokyo",{"type":45,"value":2097},". Each region uses a different Auth Token from your US1 credentials. Find yours in the Twilio Console under API keys & tokens, selecting your target region.",{"type":39,"tag":201,"props":2099,"children":2100},{},[],{"type":39,"tag":40,"props":2102,"children":2104},{"id":2103},"configuration",[2105],{"type":45,"value":2106},"Configuration",{"type":39,"tag":211,"props":2108,"children":2110},{"className":213,"code":2109,"language":215,"meta":216,"style":216},"twilio config:list                          # show all settings\ntwilio config:set --edge=sydney             # set default edge\ntwilio config:set --require-profile-input   # prompt before using active profile\n",[2111],{"type":39,"tag":102,"props":2112,"children":2113},{"__ignoreMap":216},[2114,2131,2152],{"type":39,"tag":222,"props":2115,"children":2116},{"class":224,"line":225},[2117,2121,2126],{"type":39,"tag":222,"props":2118,"children":2119},{"style":239},[2120],{"type":45,"value":8},{"type":39,"tag":222,"props":2122,"children":2123},{"style":244},[2124],{"type":45,"value":2125}," config:list",{"type":39,"tag":222,"props":2127,"children":2128},{"style":229},[2129],{"type":45,"value":2130},"                          # show all settings\n",{"type":39,"tag":222,"props":2132,"children":2133},{"class":224,"line":235},[2134,2138,2142,2147],{"type":39,"tag":222,"props":2135,"children":2136},{"style":239},[2137],{"type":45,"value":8},{"type":39,"tag":222,"props":2139,"children":2140},{"style":244},[2141],{"type":45,"value":1984},{"type":39,"tag":222,"props":2143,"children":2144},{"style":244},[2145],{"type":45,"value":2146}," --edge=sydney",{"type":39,"tag":222,"props":2148,"children":2149},{"style":229},[2150],{"type":45,"value":2151},"             # set default edge\n",{"type":39,"tag":222,"props":2153,"children":2154},{"class":224,"line":250},[2155,2159,2163,2168],{"type":39,"tag":222,"props":2156,"children":2157},{"style":239},[2158],{"type":45,"value":8},{"type":39,"tag":222,"props":2160,"children":2161},{"style":244},[2162],{"type":45,"value":1984},{"type":39,"tag":222,"props":2164,"children":2165},{"style":244},[2166],{"type":45,"value":2167}," --require-profile-input",{"type":39,"tag":222,"props":2169,"children":2170},{"style":229},[2171],{"type":45,"value":2172},"   # prompt before using active profile\n",{"type":39,"tag":48,"props":2174,"children":2175},{},[2176,2178,2184],{"type":45,"value":2177},"Config stored at ",{"type":39,"tag":102,"props":2179,"children":2181},{"className":2180},[],[2182],{"type":45,"value":2183},"~\u002F.twilio-cli\u002Fconfig.json",{"type":45,"value":2185},".",{"type":39,"tag":48,"props":2187,"children":2188},{},[2189],{"type":39,"tag":57,"props":2190,"children":2191},{},[2192],{"type":45,"value":2193},"Syntax notes:",{"type":39,"tag":1267,"props":2195,"children":2196},{},[2197,2216,2227],{"type":39,"tag":1271,"props":2198,"children":2199},{},[2200,2202,2208,2210],{"type":45,"value":2201},"Commands use spaces by default, using colon also works: ",{"type":39,"tag":102,"props":2203,"children":2205},{"className":2204},[],[2206],{"type":45,"value":2207},"twilio api core messages create",{"type":45,"value":2209}," = ",{"type":39,"tag":102,"props":2211,"children":2213},{"className":2212},[],[2214],{"type":45,"value":2215},"twilio api:core:messages:create",{"type":39,"tag":1271,"props":2217,"children":2218},{},[2219,2225],{"type":39,"tag":102,"props":2220,"children":2222},{"className":2221},[],[2223],{"type":45,"value":2224},"twilio [COMMAND] --help",{"type":45,"value":2226}," for any command's options",{"type":39,"tag":1271,"props":2228,"children":2229},{},[2230,2232,2238],{"type":45,"value":2231},"Multi-line: use ",{"type":39,"tag":102,"props":2233,"children":2235},{"className":2234},[],[2236],{"type":45,"value":2237},"\\",{"type":45,"value":2239}," for line continuation",{"type":39,"tag":201,"props":2241,"children":2242},{},[],{"type":39,"tag":40,"props":2244,"children":2246},{"id":2245},"cannot",[2247],{"type":45,"value":2248},"CANNOT",{"type":39,"tag":1267,"props":2250,"children":2251},{},[2252,2270,2280,2290,2300,2305],{"type":39,"tag":1271,"props":2253,"children":2254},{},[2255,2260,2262,2268],{"type":39,"tag":57,"props":2256,"children":2257},{},[2258],{"type":45,"value":2259},"Default list limit is 50 records",{"type":45,"value":2261}," — always pass ",{"type":39,"tag":102,"props":2263,"children":2265},{"className":2264},[],[2266],{"type":45,"value":2267},"--limit",{"type":45,"value":2269}," for larger result sets.",{"type":39,"tag":1271,"props":2271,"children":2272},{},[2273,2278],{"type":39,"tag":57,"props":2274,"children":2275},{},[2276],{"type":45,"value":2277},"API timeout is 30 seconds",{"type":45,"value":2279}," — long-running operations may fail silently.",{"type":39,"tag":1271,"props":2281,"children":2282},{},[2283,2288],{"type":39,"tag":57,"props":2284,"children":2285},{},[2286],{"type":45,"value":2287},"Cannot use localhost URLs for webhooks",{"type":45,"value":2289}," — use a tunneling service, such as ngrok, installed separately.",{"type":39,"tag":1271,"props":2291,"children":2292},{},[2293,2298],{"type":39,"tag":57,"props":2294,"children":2295},{},[2296],{"type":45,"value":2297},"No autocomplete on Windows",{"type":45,"value":2299}," — only bash\u002Fzsh supported.",{"type":39,"tag":1271,"props":2301,"children":2302},{},[2303],{"type":45,"value":2304},"** ngrok is not bundled with twilio-cli**, install separately",{"type":39,"tag":1271,"props":2306,"children":2307},{},[2308,2313,2315,2321],{"type":39,"tag":57,"props":2309,"children":2310},{},[2311],{"type":45,"value":2312},"Cannot send Twilio Email (comms API) via CLI",{"type":45,"value":2314}," — ",{"type":39,"tag":102,"props":2316,"children":2318},{"className":2317},[],[2319],{"type":45,"value":2320},"twilio email:send",{"type":45,"value":2322}," uses SendGrid only. For Twilio Email, use the REST API directly.",{"type":39,"tag":201,"props":2324,"children":2325},{},[],{"type":39,"tag":40,"props":2327,"children":2329},{"id":2328},"next-steps",[2330],{"type":45,"value":2331},"Next Steps",{"type":39,"tag":1267,"props":2333,"children":2334},{},[2335,2357,2372,2387,2402],{"type":39,"tag":1271,"props":2336,"children":2337},{},[2338,2343,2344,2350,2351],{"type":39,"tag":57,"props":2339,"children":2340},{},[2341],{"type":45,"value":2342},"Account setup and API keys:",{"type":45,"value":178},{"type":39,"tag":102,"props":2345,"children":2347},{"className":2346},[],[2348],{"type":45,"value":2349},"twilio-account-setup",{"type":45,"value":459},{"type":39,"tag":102,"props":2352,"children":2354},{"className":2353},[],[2355],{"type":45,"value":2356},"twilio-iam-auth-setup",{"type":39,"tag":1271,"props":2358,"children":2359},{},[2360,2365,2366],{"type":39,"tag":57,"props":2361,"children":2362},{},[2363],{"type":45,"value":2364},"Webhook architecture and signature validation:",{"type":45,"value":178},{"type":39,"tag":102,"props":2367,"children":2369},{"className":2368},[],[2370],{"type":45,"value":2371},"twilio-webhook-architecture",{"type":39,"tag":1271,"props":2373,"children":2374},{},[2375,2380,2381],{"type":39,"tag":57,"props":2376,"children":2377},{},[2378],{"type":45,"value":2379},"Debugging and observability:",{"type":45,"value":178},{"type":39,"tag":102,"props":2382,"children":2384},{"className":2383},[],[2385],{"type":45,"value":2386},"twilio-debugging-observability",{"type":39,"tag":1271,"props":2388,"children":2389},{},[2390,2395,2396],{"type":39,"tag":57,"props":2391,"children":2392},{},[2393],{"type":45,"value":2394},"Send SMS via API\u002FSDK:",{"type":45,"value":178},{"type":39,"tag":102,"props":2397,"children":2399},{"className":2398},[],[2400],{"type":45,"value":2401},"twilio-send-message",{"type":39,"tag":1271,"props":2403,"children":2404},{},[2405,2410,2411],{"type":39,"tag":57,"props":2406,"children":2407},{},[2408],{"type":45,"value":2409},"SendGrid email setup:",{"type":45,"value":178},{"type":39,"tag":102,"props":2412,"children":2414},{"className":2413},[],[2415],{"type":45,"value":2416},"twilio-sendgrid-account-setup",{"type":39,"tag":2418,"props":2419,"children":2420},"style",{},[2421],{"type":45,"value":2422},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2424,"total":2596},[2425,2440,2460,2471,2483,2498,2505,2521,2537,2550,2566,2584],{"slug":2349,"name":2349,"fn":2426,"description":2427,"org":2428,"tags":2429,"stars":23,"repoUrl":24,"updatedAt":2439},"configure Twilio accounts and credentials","Create and configure a Twilio account from scratch. Covers free trial signup, trial limitations, getting credentials (Account SID and Auth Token), buying a phone number, verifying recipient numbers for trial use, SDK installation, first API call, subaccount management (creation, inheritance, credential isolation, limits), and enabling specific products (AI Assistants, Conversations, Verify, ConversationRelay, WhatsApp). Use this skill before any other Twilio skill if you do not yet have a Twilio account or need to enable a product. For Organization-level governance (SSO, SCIM, multi-team), see `twilio-organizations-setup`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2430,2433,2436],{"name":2431,"slug":2432,"type":15},"API Development","api-development",{"name":2434,"slug":2435,"type":15},"Communications","communications",{"name":2437,"slug":2438,"type":15},"SMS","sms","2026-08-01T05:43:28.968968",{"slug":2441,"name":2441,"fn":2442,"description":2443,"org":2444,"tags":2445,"stars":23,"repoUrl":24,"updatedAt":2459},"twilio-agent-augmentation-architect","augment human agents with AI intelligence","Planning skill for augmenting human agents with real-time AI intelligence. Qualifies the developer's use case across coaching, compliance, QA, and routing to recommend the right Conversation Intelligence + Conversation Memory + TaskRouter architecture. Handles both \"I want to add AI coaching to my call center\" and \"configure Conversation Intelligence operators for script adherence.\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2446,2449,2452,2455,2458],{"name":2447,"slug":2448,"type":15},"Agents","agents",{"name":2450,"slug":2451,"type":15},"AI","ai",{"name":2453,"slug":2454,"type":15},"Coaching","coaching",{"name":2456,"slug":2457,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":2461,"name":2461,"fn":2462,"description":2463,"org":2464,"tags":2465,"stars":23,"repoUrl":24,"updatedAt":2470},"twilio-agent-connect","connect AI agents to Twilio channels","Connect third-party AI agents (OpenAI, Bedrock, LangChain, Microsoft Foundry) to Twilio's communication channels using the Twilio Agent Connect SDK. Covers identity resolution, memory and context management via Conversation Memory, conversation orchestration via Conversation Orchestrator, multi-channel handling (Voice, SMS, RCS, WhatsApp, Chat), and AI-to-human escalation. Use this skill when integrating an existing LLM agent with Twilio services.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2466,2467,2468,2469],{"name":2447,"slug":2448,"type":15},{"name":2431,"slug":2432,"type":15},{"name":2434,"slug":2435,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":2472,"name":2472,"fn":2473,"description":2474,"org":2475,"tags":2476,"stars":23,"repoUrl":24,"updatedAt":2482},"twilio-ai-agent-architect","plan Twilio conversational AI agents","Planning skill for AI-powered conversational agents. Qualifies the developer's use case across outcome sophistication, entry point, and customer profile to recommend the right Twilio Conversations architecture and implementation skills. Handles both high-level requests (\"build me a voice AI assistant\") and specific ones (\"integrate ConversationRelay with my OpenAI backend\").\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2477,2478,2481],{"name":2447,"slug":2448,"type":15},{"name":2479,"slug":2480,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":2484,"name":2484,"fn":2485,"description":2486,"org":2487,"tags":2488,"stars":23,"repoUrl":24,"updatedAt":2497},"twilio-call-recordings","record and manage Twilio voice calls","Record Twilio voice calls correctly. Covers the critical distinction between Record verb (voicemail) and Dial record (call recording), dual-channel for QA, mid-call pause for PCI, Conference recording, and the ConversationRelay workaround. Use this skill whenever you need to capture call audio for compliance, QA, or analytics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2489,2492,2495,2496],{"name":2490,"slug":2491,"type":15},"Audio","audio",{"name":2493,"slug":2494,"type":15},"Compliance","compliance",{"name":2456,"slug":2457,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":4,"name":4,"fn":5,"description":6,"org":2499,"tags":2500,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2501,2502,2503,2504],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":2506,"name":2506,"fn":2507,"description":2508,"org":2509,"tags":2510,"stars":23,"repoUrl":24,"updatedAt":2520},"twilio-compliance-onboarding","manage Twilio messaging and voice compliance","Registrations required BEFORE Twilio traffic works. Covers messaging programs (A2P 10DLC, toll-free verification, WhatsApp WABA, RCS, short code, alphanumeric sender) and voice trust programs (STIR\u002FSHAKEN, Voice Integrity, Branded Calling, CNAM). Each number\u002Fsender type has its own program — registration blocks traffic until complete.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2511,2512,2515,2516,2517],{"name":2493,"slug":2494,"type":15},{"name":2513,"slug":2514,"type":15},"Messaging","messaging",{"name":2437,"slug":2438,"type":15},{"name":9,"slug":8,"type":15},{"name":2518,"slug":2519,"type":15},"WhatsApp","whatsapp","2026-07-17T06:05:47.897229",{"slug":2522,"name":2522,"fn":2523,"description":2524,"org":2525,"tags":2526,"stars":23,"repoUrl":24,"updatedAt":2536},"twilio-compliance-traffic","ensure compliance for Twilio messaging traffic","Rules you must follow for Twilio messaging and voice traffic. Covers TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI), FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies, SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively when developers have working traffic to ensure they follow the rules.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2527,2528,2529,2532,2535],{"name":2493,"slug":2494,"type":15},{"name":2513,"slug":2514,"type":15},{"name":2530,"slug":2531,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":2533,"slug":2534,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":2538,"name":2538,"fn":2539,"description":2540,"org":2541,"tags":2542,"stars":23,"repoUrl":24,"updatedAt":2549},"twilio-conference-calls","build multi-party calls with Twilio Conference","Build multi-party calls using Twilio Conference. Covers warm transfer, cold transfer, coaching (whisper), hold vs mute, participant modes, and supervisor barge. Use this skill for any contact center, support line, or scenario requiring transfers, holds, or multi-party calls.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2543,2544,2545,2548],{"name":2490,"slug":2491,"type":15},{"name":2434,"slug":2435,"type":15},{"name":2546,"slug":2547,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":2551,"name":2551,"fn":2552,"description":2553,"org":2554,"tags":2555,"stars":23,"repoUrl":24,"updatedAt":2565},"twilio-content-template-builder","create and send message templates with Twilio","Create, manage, and send message templates using Twilio's Content API. Covers template creation for WhatsApp, SMS, RCS, and MMS; variable usage; WhatsApp Meta approval; and sending templates via ContentSid. Use this skill when building structured messages that require pre-approval or consistent formatting across channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2556,2559,2560,2561,2564],{"name":2557,"slug":2558,"type":15},"Email","email",{"name":2513,"slug":2514,"type":15},{"name":2437,"slug":2438,"type":15},{"name":2562,"slug":2563,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":2567,"name":2567,"fn":2568,"description":2569,"org":2570,"tags":2571,"stars":23,"repoUrl":24,"updatedAt":2583},"twilio-conversation-intelligence","build conversation intelligence pipelines","Twilio Conversation Intelligence development guide. Use when building real-time or post-call conversation analysis, language operator pipelines, sentiment analysis, agent assist, cross-channel analytics, or querying aggregated conversation insights (sentiment trends, escalation rates, dashboards).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2572,2573,2576,2579,2582],{"name":2447,"slug":2448,"type":15},{"name":2574,"slug":2575,"type":15},"Analytics","analytics",{"name":2577,"slug":2578,"type":15},"Monitoring","monitoring",{"name":2580,"slug":2581,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":2585,"name":2585,"fn":2586,"description":2587,"org":2588,"tags":2589,"stars":23,"repoUrl":24,"updatedAt":2595},"twilio-conversation-memory","manage conversation memory with Twilio","Store and retrieve conversation context using Twilio Conversation Memory. Covers Memory Store provisioning, profile management, traits, observations, conversation summaries, and semantic Recall. Use this skill to give AI agents or human agents persistent memory of conversations across sessions and channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2590,2591,2594],{"name":2447,"slug":2448,"type":15},{"name":2592,"slug":2593,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724",57,{"items":2598,"total":2596},[2599,2605,2613,2620,2626,2633,2640],{"slug":2349,"name":2349,"fn":2426,"description":2427,"org":2600,"tags":2601,"stars":23,"repoUrl":24,"updatedAt":2439},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2602,2603,2604],{"name":2431,"slug":2432,"type":15},{"name":2434,"slug":2435,"type":15},{"name":2437,"slug":2438,"type":15},{"slug":2441,"name":2441,"fn":2442,"description":2443,"org":2606,"tags":2607,"stars":23,"repoUrl":24,"updatedAt":2459},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2608,2609,2610,2611,2612],{"name":2447,"slug":2448,"type":15},{"name":2450,"slug":2451,"type":15},{"name":2453,"slug":2454,"type":15},{"name":2456,"slug":2457,"type":15},{"name":9,"slug":8,"type":15},{"slug":2461,"name":2461,"fn":2462,"description":2463,"org":2614,"tags":2615,"stars":23,"repoUrl":24,"updatedAt":2470},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2616,2617,2618,2619],{"name":2447,"slug":2448,"type":15},{"name":2431,"slug":2432,"type":15},{"name":2434,"slug":2435,"type":15},{"name":9,"slug":8,"type":15},{"slug":2472,"name":2472,"fn":2473,"description":2474,"org":2621,"tags":2622,"stars":23,"repoUrl":24,"updatedAt":2482},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2623,2624,2625],{"name":2447,"slug":2448,"type":15},{"name":2479,"slug":2480,"type":15},{"name":9,"slug":8,"type":15},{"slug":2484,"name":2484,"fn":2485,"description":2486,"org":2627,"tags":2628,"stars":23,"repoUrl":24,"updatedAt":2497},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2629,2630,2631,2632],{"name":2490,"slug":2491,"type":15},{"name":2493,"slug":2494,"type":15},{"name":2456,"slug":2457,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":2634,"tags":2635,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2636,2637,2638,2639],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":2506,"name":2506,"fn":2507,"description":2508,"org":2641,"tags":2642,"stars":23,"repoUrl":24,"updatedAt":2520},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2643,2644,2645,2646,2647],{"name":2493,"slug":2494,"type":15},{"name":2513,"slug":2514,"type":15},{"name":2437,"slug":2438,"type":15},{"name":9,"slug":8,"type":15},{"name":2518,"slug":2519,"type":15}]