[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-account-setup":3,"mdc--dvgdn-key":32,"related-org-twilio-twilio-account-setup":2236,"related-repo-twilio-twilio-account-setup":2410},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":30,"mdContent":31},"twilio-account-setup","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},"twilio","Twilio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftwilio.png",[12,16,19],{"name":13,"slug":14,"type":15},"SMS","sms","tag",{"name":17,"slug":18,"type":15},"API Development","api-development",{"name":20,"slug":21,"type":15},"Communications","communications",25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-08-01T05:43:28.968968",null,7,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\u002Ftwilio-account-setup","---\nname: twilio-account-setup\ndescription: >\n  Create and configure a Twilio account from scratch. Covers free trial signup,\n  trial limitations, getting credentials (Account SID and Auth Token), buying\n  a phone number, verifying recipient numbers for trial use, SDK installation,\n  first API call, subaccount management (creation, inheritance, credential\n  isolation, limits), and enabling specific products (AI Assistants,\n  Conversations, Verify, ConversationRelay, WhatsApp). Use this skill before\n  any other Twilio skill if you do not yet have a Twilio account or need to\n  enable a product. For Organization-level governance (SSO, SCIM, multi-team),\n  see `twilio-organizations-setup`.\n---\n\n## Overview\n\nEvery Twilio skill requires an active Twilio account and credentials. This skill covers the one-time setup steps that are prerequisites for all other Twilio skills.\n\n---\n\n## Quickstart\n\n1. Sign up at [twilio.com\u002Ftry-twilio](https:\u002F\u002Fwww.twilio.com\u002Ftry-twilio) -- enter name, email, password\n2. Verify your email and personal phone number\n3. Get your credentials from [Console > Account > API keys & tokens](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Faccount\u002Fkeys-credentials\u002Fapi-keys):\n\n```bash\nexport TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nexport TWILIO_AUTH_TOKEN=your_auth_token\n```\n\n4. Buy a phone number at [Console > Phone Numbers > Buy a number](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fphone-numbers\u002Fsearch)\n\n5. Install the SDK and send your first message:\n\n**Python**\n```bash\npip install twilio\n```\n```python\nimport os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\nmessage = client.messages.create(\n    to=\"+15558675310\",  # must be verified on trial accounts\n    from_=\"+15017122661\",  # your Twilio number\n    body=\"Hello from Twilio!\"\n)\nprint(f\"Sent: {message.sid}\")\n```\n\n**Node.js**\n```bash\nnpm install twilio\n```\n```node\nconst twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\nconst message = await client.messages.create({\n    to: \"+15558675310\",  \u002F\u002F must be verified on trial accounts\n    from: \"+15017122661\",  \u002F\u002F your Twilio number\n    body: \"Hello from Twilio!\",\n});\nconsole.log(`Sent: ${message.sid}`);\n```\n\nYou're ready to use any Twilio skill. Trial accounts have restrictions -- see Constraints below.\n\n---\n\n## Key Patterns\n\n### Verify Recipient Numbers (trial accounts only)\n\nTrial accounts can only send to **verified phone numbers** (up to 5 per account).\n\n1. Go to [Console > Phone Numbers > Verified Caller IDs](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fphone-numbers\u002Fverified-caller-ids)\n2. Click **Add a new Caller ID** and verify via SMS code\n\nVerified numbers work across both messaging and voice. Remove this restriction by upgrading your account.\n\n### Enable Specific Products\n\nSome products require explicit activation:\n\n| Product | How to enable |\n|---------|--------------|\n| AI Assistants | [Console > Explore Products > AI Assistants](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fai-assistants) > **Get started** |\n| Conversations | [Console > Conversations > Manage > Overview](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fconversations\u002Fmanage\u002Foverview) > **Enable Conversations** |\n| Verify | [Console > Verify > Services](https:\u002F\u002F1console.twilio.com\u002Fgo?to=\u002Faccount\u002F__account__\u002Fus1\u002Fverify\u002Fservices) > **Create new** |\n| WhatsApp (sandbox) | [Console > Messaging > Try it out > Send a WhatsApp message](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fsms\u002Ftry-it-out\u002Fwhatsapp-learn) |\n| ConversationRelay | [Console > Voice > ConversationRelay](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fvoice\u002Fconversation-relay) > complete onboarding form |\n\n### SDK Installation\n\n| Language | Install | SDK package |\n|----------|---------|-------------|\n| Python | `pip install twilio` | `twilio` |\n| Node.js | `npm install twilio` | `twilio` |\n| Java | Maven\u002FGradle | `com.twilio.sdk:twilio` |\n| C# | `dotnet add package Twilio` | `Twilio` |\n| Ruby | `gem install twilio-ruby` | `twilio-ruby` |\n| PHP | `composer require twilio\u002Fsdk` | `twilio\u002Fsdk` |\n| Go | `go get github.com\u002Ftwilio\u002Ftwilio-go` | `twilio-go` |\n\n### Initialize the Client\n\nAlways load credentials from environment variables -- never hardcode them.\n\n**Python**\n```python\nimport os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n```\n\n**Node.js**\n```node\nconst twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n```\n\nFor production, use API Keys instead of Auth Token. See `twilio-iam-auth-setup`.\n\n### Twilio CLI Setup\n\nThe CLI is useful for quick operations and local webhook testing.\n\n```bash\n# Install (macOS)\nbrew tap twilio\u002Fbrew && brew install twilio\n\n# Install (npm -- all platforms)\nnpm install -g twilio-cli\n\n# Login (creates an API key automatically)\ntwilio login\n\n# Verify setup\ntwilio phone-numbers:list\n```\n\nThe CLI stores profiles for switching between accounts:\n```bash\n# List profiles\ntwilio profiles:list\n\n# Switch active profile\ntwilio profiles:use my-project\n\n# Use environment variables instead of profiles\nexport TWILIO_ACCOUNT_SID=ACxxxxxxxx\nexport TWILIO_AUTH_TOKEN=xxxxxxxx\n```\n\nPrecedence: `--profile` flag > environment variables > active profile.\n\n### Accounts and Subaccounts\n\n**Creating a new Twilio account:** Accounts can only be created from the Console UI — there is no API for creating top-level accounts. A new account is automatically created when a user signs up. Additional accounts can be created from Console > My Accounts (or \"View all accounts\").\n\n**To see all your accounts:** Console > My Accounts shows all accounts and subaccounts you have access to. For Organization-wide visibility, see Console > Admin > Accounts (requires Organization admin role). See `twilio-organizations-setup` for Organization-level governance.\n\n### Subaccounts\n\nSubaccounts are child accounts under your main (parent) account. Use them for multi-tenant apps, per-customer isolation, or team separation.\n\n**How they differ from the parent account:**\n- Resources (numbers, calls, messages) are **isolated** — a subaccount cannot see the parent's resources or other subaccounts' resources\n- Billing is **consolidated** to the parent — a single Twilio balance for all subaccounts\n- Voice and SMS permissions **inherit** from the parent\n- Phone numbers can be transferred between parent and subaccounts\n\n**Create via Console:** Console > My Accounts > Create Subaccount\n\n**Create via API:**\n\n**Python**\n```python\nsubaccount = client.api.accounts.create(friendly_name=\"Customer A\")\nprint(f\"Subaccount SID: {subaccount.sid}\")\n# Store securely — auth_token is only shown at creation time\n# e.g., secrets_manager.store(\"subaccount_auth_token\", subaccount.auth_token)\n```\n\n**Node.js**\n```javascript\nconst subaccount = await client.api.accounts.create({ friendlyName: \"Customer A\" });\nconsole.log(`Subaccount SID: ${subaccount.sid}`);\n```\n\n### Subaccount Credential Isolation\n\n**Always use the subaccount's own credentials** (API Keys or Auth Token) when accessing subaccount resources — do NOT use the parent account's credentials as a shortcut.\n\n**Python — access subaccount resources**\n```python\n# Correct: use subaccount credentials\nsub_client = Client(subaccount.sid, subaccount.auth_token)\ncall = sub_client.calls.create(\n    to=\"+15558675310\",\n    from_=\"+15017122661\",  # number owned by this subaccount\n    url=\"https:\u002F\u002Fyourapp.com\u002Fvoice\"\n)\n\n# Also correct: parent credentials with subaccount SID (v2010 API only)\nparent_client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\ncalls = parent_client.api.accounts(subaccount.sid).calls.list()\n```\n\n**Critical:** Resources on separate subdomains (`studio.twilio.com`, `taskrouter.twilio.com`) **require subaccount-specific credentials**. Parent account credentials will not work on these subdomains.\n\n### Subaccount Limits\n\n- **Default limit:** 1,000 subaccounts per parent account\n- **Trial accounts:** Can create only 1 subaccount — upgrade to create more\n- **At the limit:** Contact Twilio Support with your use case to request an increase\n- **Closing:** Set status to `closed` via API or Console. Closed subaccounts are automatically deleted after 30 days\n- **Suspension cascade:** Suspending the parent account automatically suspends ALL subaccounts\n\n### Upgrade from Trial\n\n1. Click **Upgrade** at the top of the Console, or go to [Console > Admin > Account billing](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fadmin\u002Fbilling)\n2. Provide name, address, and payment details\n3. Your trial phone number carries over; trial balance does not\n\n---\n\n## Trial Restrictions at a Glance\n\n| Feature | Trial | Upgraded |\n|---------|-------|----------|\n| Phone numbers | 1 | Unlimited |\n| Send to unverified numbers | No | Yes |\n| Outbound message prefix | Yes (visible to recipient) | No |\n| Verified caller IDs | Up to 5 | Not needed |\n| A2P 10DLC registration | No | Yes |\n| Daily WhatsApp messages | 50 | Unlimited |\n| ConversationRelay | No | Yes (after onboarding) |\n| Voice: outbound calls | Domestic only | International |\n\n---\n\n## CANNOT\n\n- **Cannot create top-level accounts via API** — Only Console UI. A new account is created at signup; additional accounts from Console > My Accounts.\n- **Cannot create more than 1 subaccount on trial** — Upgrade your account first, then you can create up to 1,000.\n- **Cannot access subdomain resources with parent credentials** — Studio, TaskRouter, and other subdomain APIs require subaccount-specific credentials. Parent credentials return auth errors.\n- **Cannot undo a closed subaccount after 30 days** — Closed subaccounts are permanently deleted. Suspension is reversible; closure is not.\n- **Cannot transfer trial balance to a paid account** — Trial credits are forfeited on upgrade.\n- **Cannot send to unverified numbers on trial** — Only verified Caller IDs (up to 5) can receive messages or calls.\n- **Auth Token rotation invalidates ALL API keys** — This is a one-way door. Use API Keys from day one. See `twilio-security-api-auth`.\n- **API Key secrets shown only once at creation** — Store them immediately. Cannot be retrieved afterward.\n- **AI Assistants and ConversationRelay require approval** — Limited access products. Activation is not instant.\n\n---\n\n## Next Steps\n\n- **Organization governance (SSO, SCIM, multi-team):** `twilio-organizations-setup`\n- **Secure credential management and API Keys:** `twilio-security-api-auth`\n- **Send your first SMS:** `twilio-sms-send-message`\n- **Send your first WhatsApp message:** `twilio-whatsapp-send-message`\n- **Receive incoming messages:** `twilio-messaging-webhooks`\n- **US SMS compliance (A2P 10DLC):** `twilio-compliance-onboarding`\n- **Webhook setup:** `twilio-webhook-architecture`\n",{"data":33,"body":34},{"name":4,"description":6},{"type":35,"children":36},"root",[37,46,52,56,62,102,165,186,195,222,318,326,349,429,434,437,443,450,462,489,494,500,505,644,650,850,856,861,868,903,910,931,944,950,955,1098,1103,1217,1230,1236,1246,1264,1270,1275,1283,1328,1338,1346,1353,1392,1399,1577,1583,1593,1601,1694,1727,1733,1794,1800,1831,1834,1840,2005,2008,2014,2114,2117,2123,2230],{"type":38,"tag":39,"props":40,"children":42},"element","h2",{"id":41},"overview",[43],{"type":44,"value":45},"text","Overview",{"type":38,"tag":47,"props":48,"children":49},"p",{},[50],{"type":44,"value":51},"Every Twilio skill requires an active Twilio account and credentials. This skill covers the one-time setup steps that are prerequisites for all other Twilio skills.",{"type":38,"tag":53,"props":54,"children":55},"hr",{},[],{"type":38,"tag":39,"props":57,"children":59},{"id":58},"quickstart",[60],{"type":44,"value":61},"Quickstart",{"type":38,"tag":63,"props":64,"children":65},"ol",{},[66,83,88],{"type":38,"tag":67,"props":68,"children":69},"li",{},[70,72,81],{"type":44,"value":71},"Sign up at ",{"type":38,"tag":73,"props":74,"children":78},"a",{"href":75,"rel":76},"https:\u002F\u002Fwww.twilio.com\u002Ftry-twilio",[77],"nofollow",[79],{"type":44,"value":80},"twilio.com\u002Ftry-twilio",{"type":44,"value":82}," -- enter name, email, password",{"type":38,"tag":67,"props":84,"children":85},{},[86],{"type":44,"value":87},"Verify your email and personal phone number",{"type":38,"tag":67,"props":89,"children":90},{},[91,93,100],{"type":44,"value":92},"Get your credentials from ",{"type":38,"tag":73,"props":94,"children":97},{"href":95,"rel":96},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Faccount\u002Fkeys-credentials\u002Fapi-keys",[77],[98],{"type":44,"value":99},"Console > Account > API keys & tokens",{"type":44,"value":101},":",{"type":38,"tag":103,"props":104,"children":109},"pre",{"className":105,"code":106,"language":107,"meta":108,"style":108},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nexport TWILIO_AUTH_TOKEN=your_auth_token\n","bash","",[110],{"type":38,"tag":111,"props":112,"children":113},"code",{"__ignoreMap":108},[114,143],{"type":38,"tag":115,"props":116,"children":119},"span",{"class":117,"line":118},"line",1,[120,126,132,138],{"type":38,"tag":115,"props":121,"children":123},{"style":122},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[124],{"type":44,"value":125},"export",{"type":38,"tag":115,"props":127,"children":129},{"style":128},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[130],{"type":44,"value":131}," TWILIO_ACCOUNT_SID",{"type":38,"tag":115,"props":133,"children":135},{"style":134},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[136],{"type":44,"value":137},"=",{"type":38,"tag":115,"props":139,"children":140},{"style":128},[141],{"type":44,"value":142},"ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",{"type":38,"tag":115,"props":144,"children":146},{"class":117,"line":145},2,[147,151,156,160],{"type":38,"tag":115,"props":148,"children":149},{"style":122},[150],{"type":44,"value":125},{"type":38,"tag":115,"props":152,"children":153},{"style":128},[154],{"type":44,"value":155}," TWILIO_AUTH_TOKEN",{"type":38,"tag":115,"props":157,"children":158},{"style":134},[159],{"type":44,"value":137},{"type":38,"tag":115,"props":161,"children":162},{"style":128},[163],{"type":44,"value":164},"your_auth_token\n",{"type":38,"tag":63,"props":166,"children":168},{"start":167},4,[169,181],{"type":38,"tag":67,"props":170,"children":171},{},[172,174],{"type":44,"value":173},"Buy a phone number at ",{"type":38,"tag":73,"props":175,"children":178},{"href":176,"rel":177},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fphone-numbers\u002Fsearch",[77],[179],{"type":44,"value":180},"Console > Phone Numbers > Buy a number",{"type":38,"tag":67,"props":182,"children":183},{},[184],{"type":44,"value":185},"Install the SDK and send your first message:",{"type":38,"tag":47,"props":187,"children":188},{},[189],{"type":38,"tag":190,"props":191,"children":192},"strong",{},[193],{"type":44,"value":194},"Python",{"type":38,"tag":103,"props":196,"children":198},{"className":105,"code":197,"language":107,"meta":108,"style":108},"pip install twilio\n",[199],{"type":38,"tag":111,"props":200,"children":201},{"__ignoreMap":108},[202],{"type":38,"tag":115,"props":203,"children":204},{"class":117,"line":118},[205,211,217],{"type":38,"tag":115,"props":206,"children":208},{"style":207},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[209],{"type":44,"value":210},"pip",{"type":38,"tag":115,"props":212,"children":214},{"style":213},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[215],{"type":44,"value":216}," install",{"type":38,"tag":115,"props":218,"children":219},{"style":213},[220],{"type":44,"value":221}," twilio\n",{"type":38,"tag":103,"props":223,"children":227},{"className":224,"code":225,"language":226,"meta":108,"style":108},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\nmessage = client.messages.create(\n    to=\"+15558675310\",  # must be verified on trial accounts\n    from_=\"+15017122661\",  # your Twilio number\n    body=\"Hello from Twilio!\"\n)\nprint(f\"Sent: {message.sid}\")\n","python",[228],{"type":38,"tag":111,"props":229,"children":230},{"__ignoreMap":108},[231,239,247,257,265,274,283,291,300,309],{"type":38,"tag":115,"props":232,"children":233},{"class":117,"line":118},[234],{"type":38,"tag":115,"props":235,"children":236},{},[237],{"type":44,"value":238},"import os\n",{"type":38,"tag":115,"props":240,"children":241},{"class":117,"line":145},[242],{"type":38,"tag":115,"props":243,"children":244},{},[245],{"type":44,"value":246},"from twilio.rest import Client\n",{"type":38,"tag":115,"props":248,"children":250},{"class":117,"line":249},3,[251],{"type":38,"tag":115,"props":252,"children":254},{"emptyLinePlaceholder":253},true,[255],{"type":44,"value":256},"\n",{"type":38,"tag":115,"props":258,"children":259},{"class":117,"line":167},[260],{"type":38,"tag":115,"props":261,"children":262},{},[263],{"type":44,"value":264},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":38,"tag":115,"props":266,"children":268},{"class":117,"line":267},5,[269],{"type":38,"tag":115,"props":270,"children":271},{},[272],{"type":44,"value":273},"message = client.messages.create(\n",{"type":38,"tag":115,"props":275,"children":277},{"class":117,"line":276},6,[278],{"type":38,"tag":115,"props":279,"children":280},{},[281],{"type":44,"value":282},"    to=\"+15558675310\",  # must be verified on trial accounts\n",{"type":38,"tag":115,"props":284,"children":285},{"class":117,"line":26},[286],{"type":38,"tag":115,"props":287,"children":288},{},[289],{"type":44,"value":290},"    from_=\"+15017122661\",  # your Twilio number\n",{"type":38,"tag":115,"props":292,"children":294},{"class":117,"line":293},8,[295],{"type":38,"tag":115,"props":296,"children":297},{},[298],{"type":44,"value":299},"    body=\"Hello from Twilio!\"\n",{"type":38,"tag":115,"props":301,"children":303},{"class":117,"line":302},9,[304],{"type":38,"tag":115,"props":305,"children":306},{},[307],{"type":44,"value":308},")\n",{"type":38,"tag":115,"props":310,"children":312},{"class":117,"line":311},10,[313],{"type":38,"tag":115,"props":314,"children":315},{},[316],{"type":44,"value":317},"print(f\"Sent: {message.sid}\")\n",{"type":38,"tag":47,"props":319,"children":320},{},[321],{"type":38,"tag":190,"props":322,"children":323},{},[324],{"type":44,"value":325},"Node.js",{"type":38,"tag":103,"props":327,"children":329},{"className":105,"code":328,"language":107,"meta":108,"style":108},"npm install twilio\n",[330],{"type":38,"tag":111,"props":331,"children":332},{"__ignoreMap":108},[333],{"type":38,"tag":115,"props":334,"children":335},{"class":117,"line":118},[336,341,345],{"type":38,"tag":115,"props":337,"children":338},{"style":207},[339],{"type":44,"value":340},"npm",{"type":38,"tag":115,"props":342,"children":343},{"style":213},[344],{"type":44,"value":216},{"type":38,"tag":115,"props":346,"children":347},{"style":213},[348],{"type":44,"value":221},{"type":38,"tag":103,"props":350,"children":354},{"className":351,"code":352,"language":353,"meta":108,"style":108},"language-node shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\nconst message = await client.messages.create({\n    to: \"+15558675310\",  \u002F\u002F must be verified on trial accounts\n    from: \"+15017122661\",  \u002F\u002F your Twilio number\n    body: \"Hello from Twilio!\",\n});\nconsole.log(`Sent: ${message.sid}`);\n","node",[355],{"type":38,"tag":111,"props":356,"children":357},{"__ignoreMap":108},[358,366,374,381,389,397,405,413,421],{"type":38,"tag":115,"props":359,"children":360},{"class":117,"line":118},[361],{"type":38,"tag":115,"props":362,"children":363},{},[364],{"type":44,"value":365},"const twilio = require(\"twilio\");\n",{"type":38,"tag":115,"props":367,"children":368},{"class":117,"line":145},[369],{"type":38,"tag":115,"props":370,"children":371},{},[372],{"type":44,"value":373},"const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",{"type":38,"tag":115,"props":375,"children":376},{"class":117,"line":249},[377],{"type":38,"tag":115,"props":378,"children":379},{"emptyLinePlaceholder":253},[380],{"type":44,"value":256},{"type":38,"tag":115,"props":382,"children":383},{"class":117,"line":167},[384],{"type":38,"tag":115,"props":385,"children":386},{},[387],{"type":44,"value":388},"const message = await client.messages.create({\n",{"type":38,"tag":115,"props":390,"children":391},{"class":117,"line":267},[392],{"type":38,"tag":115,"props":393,"children":394},{},[395],{"type":44,"value":396},"    to: \"+15558675310\",  \u002F\u002F must be verified on trial accounts\n",{"type":38,"tag":115,"props":398,"children":399},{"class":117,"line":276},[400],{"type":38,"tag":115,"props":401,"children":402},{},[403],{"type":44,"value":404},"    from: \"+15017122661\",  \u002F\u002F your Twilio number\n",{"type":38,"tag":115,"props":406,"children":407},{"class":117,"line":26},[408],{"type":38,"tag":115,"props":409,"children":410},{},[411],{"type":44,"value":412},"    body: \"Hello from Twilio!\",\n",{"type":38,"tag":115,"props":414,"children":415},{"class":117,"line":293},[416],{"type":38,"tag":115,"props":417,"children":418},{},[419],{"type":44,"value":420},"});\n",{"type":38,"tag":115,"props":422,"children":423},{"class":117,"line":302},[424],{"type":38,"tag":115,"props":425,"children":426},{},[427],{"type":44,"value":428},"console.log(`Sent: ${message.sid}`);\n",{"type":38,"tag":47,"props":430,"children":431},{},[432],{"type":44,"value":433},"You're ready to use any Twilio skill. Trial accounts have restrictions -- see Constraints below.",{"type":38,"tag":53,"props":435,"children":436},{},[],{"type":38,"tag":39,"props":438,"children":440},{"id":439},"key-patterns",[441],{"type":44,"value":442},"Key Patterns",{"type":38,"tag":444,"props":445,"children":447},"h3",{"id":446},"verify-recipient-numbers-trial-accounts-only",[448],{"type":44,"value":449},"Verify Recipient Numbers (trial accounts only)",{"type":38,"tag":47,"props":451,"children":452},{},[453,455,460],{"type":44,"value":454},"Trial accounts can only send to ",{"type":38,"tag":190,"props":456,"children":457},{},[458],{"type":44,"value":459},"verified phone numbers",{"type":44,"value":461}," (up to 5 per account).",{"type":38,"tag":63,"props":463,"children":464},{},[465,477],{"type":38,"tag":67,"props":466,"children":467},{},[468,470],{"type":44,"value":469},"Go to ",{"type":38,"tag":73,"props":471,"children":474},{"href":472,"rel":473},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fphone-numbers\u002Fverified-caller-ids",[77],[475],{"type":44,"value":476},"Console > Phone Numbers > Verified Caller IDs",{"type":38,"tag":67,"props":478,"children":479},{},[480,482,487],{"type":44,"value":481},"Click ",{"type":38,"tag":190,"props":483,"children":484},{},[485],{"type":44,"value":486},"Add a new Caller ID",{"type":44,"value":488}," and verify via SMS code",{"type":38,"tag":47,"props":490,"children":491},{},[492],{"type":44,"value":493},"Verified numbers work across both messaging and voice. Remove this restriction by upgrading your account.",{"type":38,"tag":444,"props":495,"children":497},{"id":496},"enable-specific-products",[498],{"type":44,"value":499},"Enable Specific Products",{"type":38,"tag":47,"props":501,"children":502},{},[503],{"type":44,"value":504},"Some products require explicit activation:",{"type":38,"tag":506,"props":507,"children":508},"table",{},[509,528],{"type":38,"tag":510,"props":511,"children":512},"thead",{},[513],{"type":38,"tag":514,"props":515,"children":516},"tr",{},[517,523],{"type":38,"tag":518,"props":519,"children":520},"th",{},[521],{"type":44,"value":522},"Product",{"type":38,"tag":518,"props":524,"children":525},{},[526],{"type":44,"value":527},"How to enable",{"type":38,"tag":529,"props":530,"children":531},"tbody",{},[532,558,582,606,624],{"type":38,"tag":514,"props":533,"children":534},{},[535,541],{"type":38,"tag":536,"props":537,"children":538},"td",{},[539],{"type":44,"value":540},"AI Assistants",{"type":38,"tag":536,"props":542,"children":543},{},[544,551,553],{"type":38,"tag":73,"props":545,"children":548},{"href":546,"rel":547},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fai-assistants",[77],[549],{"type":44,"value":550},"Console > Explore Products > AI Assistants",{"type":44,"value":552}," > ",{"type":38,"tag":190,"props":554,"children":555},{},[556],{"type":44,"value":557},"Get started",{"type":38,"tag":514,"props":559,"children":560},{},[561,566],{"type":38,"tag":536,"props":562,"children":563},{},[564],{"type":44,"value":565},"Conversations",{"type":38,"tag":536,"props":567,"children":568},{},[569,576,577],{"type":38,"tag":73,"props":570,"children":573},{"href":571,"rel":572},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fconversations\u002Fmanage\u002Foverview",[77],[574],{"type":44,"value":575},"Console > Conversations > Manage > Overview",{"type":44,"value":552},{"type":38,"tag":190,"props":578,"children":579},{},[580],{"type":44,"value":581},"Enable Conversations",{"type":38,"tag":514,"props":583,"children":584},{},[585,590],{"type":38,"tag":536,"props":586,"children":587},{},[588],{"type":44,"value":589},"Verify",{"type":38,"tag":536,"props":591,"children":592},{},[593,600,601],{"type":38,"tag":73,"props":594,"children":597},{"href":595,"rel":596},"https:\u002F\u002F1console.twilio.com\u002Fgo?to=\u002Faccount\u002F__account__\u002Fus1\u002Fverify\u002Fservices",[77],[598],{"type":44,"value":599},"Console > Verify > Services",{"type":44,"value":552},{"type":38,"tag":190,"props":602,"children":603},{},[604],{"type":44,"value":605},"Create new",{"type":38,"tag":514,"props":607,"children":608},{},[609,614],{"type":38,"tag":536,"props":610,"children":611},{},[612],{"type":44,"value":613},"WhatsApp (sandbox)",{"type":38,"tag":536,"props":615,"children":616},{},[617],{"type":38,"tag":73,"props":618,"children":621},{"href":619,"rel":620},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fsms\u002Ftry-it-out\u002Fwhatsapp-learn",[77],[622],{"type":44,"value":623},"Console > Messaging > Try it out > Send a WhatsApp message",{"type":38,"tag":514,"props":625,"children":626},{},[627,632],{"type":38,"tag":536,"props":628,"children":629},{},[630],{"type":44,"value":631},"ConversationRelay",{"type":38,"tag":536,"props":633,"children":634},{},[635,642],{"type":38,"tag":73,"props":636,"children":639},{"href":637,"rel":638},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fvoice\u002Fconversation-relay",[77],[640],{"type":44,"value":641},"Console > Voice > ConversationRelay",{"type":44,"value":643}," > complete onboarding form",{"type":38,"tag":444,"props":645,"children":647},{"id":646},"sdk-installation",[648],{"type":44,"value":649},"SDK Installation",{"type":38,"tag":506,"props":651,"children":652},{},[653,674],{"type":38,"tag":510,"props":654,"children":655},{},[656],{"type":38,"tag":514,"props":657,"children":658},{},[659,664,669],{"type":38,"tag":518,"props":660,"children":661},{},[662],{"type":44,"value":663},"Language",{"type":38,"tag":518,"props":665,"children":666},{},[667],{"type":44,"value":668},"Install",{"type":38,"tag":518,"props":670,"children":671},{},[672],{"type":44,"value":673},"SDK package",{"type":38,"tag":529,"props":675,"children":676},{},[677,701,725,747,772,798,824],{"type":38,"tag":514,"props":678,"children":679},{},[680,684,693],{"type":38,"tag":536,"props":681,"children":682},{},[683],{"type":44,"value":194},{"type":38,"tag":536,"props":685,"children":686},{},[687],{"type":38,"tag":111,"props":688,"children":690},{"className":689},[],[691],{"type":44,"value":692},"pip install twilio",{"type":38,"tag":536,"props":694,"children":695},{},[696],{"type":38,"tag":111,"props":697,"children":699},{"className":698},[],[700],{"type":44,"value":8},{"type":38,"tag":514,"props":702,"children":703},{},[704,708,717],{"type":38,"tag":536,"props":705,"children":706},{},[707],{"type":44,"value":325},{"type":38,"tag":536,"props":709,"children":710},{},[711],{"type":38,"tag":111,"props":712,"children":714},{"className":713},[],[715],{"type":44,"value":716},"npm install twilio",{"type":38,"tag":536,"props":718,"children":719},{},[720],{"type":38,"tag":111,"props":721,"children":723},{"className":722},[],[724],{"type":44,"value":8},{"type":38,"tag":514,"props":726,"children":727},{},[728,733,738],{"type":38,"tag":536,"props":729,"children":730},{},[731],{"type":44,"value":732},"Java",{"type":38,"tag":536,"props":734,"children":735},{},[736],{"type":44,"value":737},"Maven\u002FGradle",{"type":38,"tag":536,"props":739,"children":740},{},[741],{"type":38,"tag":111,"props":742,"children":744},{"className":743},[],[745],{"type":44,"value":746},"com.twilio.sdk:twilio",{"type":38,"tag":514,"props":748,"children":749},{},[750,755,764],{"type":38,"tag":536,"props":751,"children":752},{},[753],{"type":44,"value":754},"C#",{"type":38,"tag":536,"props":756,"children":757},{},[758],{"type":38,"tag":111,"props":759,"children":761},{"className":760},[],[762],{"type":44,"value":763},"dotnet add package Twilio",{"type":38,"tag":536,"props":765,"children":766},{},[767],{"type":38,"tag":111,"props":768,"children":770},{"className":769},[],[771],{"type":44,"value":9},{"type":38,"tag":514,"props":773,"children":774},{},[775,780,789],{"type":38,"tag":536,"props":776,"children":777},{},[778],{"type":44,"value":779},"Ruby",{"type":38,"tag":536,"props":781,"children":782},{},[783],{"type":38,"tag":111,"props":784,"children":786},{"className":785},[],[787],{"type":44,"value":788},"gem install twilio-ruby",{"type":38,"tag":536,"props":790,"children":791},{},[792],{"type":38,"tag":111,"props":793,"children":795},{"className":794},[],[796],{"type":44,"value":797},"twilio-ruby",{"type":38,"tag":514,"props":799,"children":800},{},[801,806,815],{"type":38,"tag":536,"props":802,"children":803},{},[804],{"type":44,"value":805},"PHP",{"type":38,"tag":536,"props":807,"children":808},{},[809],{"type":38,"tag":111,"props":810,"children":812},{"className":811},[],[813],{"type":44,"value":814},"composer require twilio\u002Fsdk",{"type":38,"tag":536,"props":816,"children":817},{},[818],{"type":38,"tag":111,"props":819,"children":821},{"className":820},[],[822],{"type":44,"value":823},"twilio\u002Fsdk",{"type":38,"tag":514,"props":825,"children":826},{},[827,832,841],{"type":38,"tag":536,"props":828,"children":829},{},[830],{"type":44,"value":831},"Go",{"type":38,"tag":536,"props":833,"children":834},{},[835],{"type":38,"tag":111,"props":836,"children":838},{"className":837},[],[839],{"type":44,"value":840},"go get github.com\u002Ftwilio\u002Ftwilio-go",{"type":38,"tag":536,"props":842,"children":843},{},[844],{"type":38,"tag":111,"props":845,"children":847},{"className":846},[],[848],{"type":44,"value":849},"twilio-go",{"type":38,"tag":444,"props":851,"children":853},{"id":852},"initialize-the-client",[854],{"type":44,"value":855},"Initialize the Client",{"type":38,"tag":47,"props":857,"children":858},{},[859],{"type":44,"value":860},"Always load credentials from environment variables -- never hardcode them.",{"type":38,"tag":47,"props":862,"children":863},{},[864],{"type":38,"tag":190,"props":865,"children":866},{},[867],{"type":44,"value":194},{"type":38,"tag":103,"props":869,"children":871},{"className":224,"code":870,"language":226,"meta":108,"style":108},"import os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",[872],{"type":38,"tag":111,"props":873,"children":874},{"__ignoreMap":108},[875,882,889,896],{"type":38,"tag":115,"props":876,"children":877},{"class":117,"line":118},[878],{"type":38,"tag":115,"props":879,"children":880},{},[881],{"type":44,"value":238},{"type":38,"tag":115,"props":883,"children":884},{"class":117,"line":145},[885],{"type":38,"tag":115,"props":886,"children":887},{},[888],{"type":44,"value":246},{"type":38,"tag":115,"props":890,"children":891},{"class":117,"line":249},[892],{"type":38,"tag":115,"props":893,"children":894},{"emptyLinePlaceholder":253},[895],{"type":44,"value":256},{"type":38,"tag":115,"props":897,"children":898},{"class":117,"line":167},[899],{"type":38,"tag":115,"props":900,"children":901},{},[902],{"type":44,"value":264},{"type":38,"tag":47,"props":904,"children":905},{},[906],{"type":38,"tag":190,"props":907,"children":908},{},[909],{"type":44,"value":325},{"type":38,"tag":103,"props":911,"children":913},{"className":351,"code":912,"language":353,"meta":108,"style":108},"const twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",[914],{"type":38,"tag":111,"props":915,"children":916},{"__ignoreMap":108},[917,924],{"type":38,"tag":115,"props":918,"children":919},{"class":117,"line":118},[920],{"type":38,"tag":115,"props":921,"children":922},{},[923],{"type":44,"value":365},{"type":38,"tag":115,"props":925,"children":926},{"class":117,"line":145},[927],{"type":38,"tag":115,"props":928,"children":929},{},[930],{"type":44,"value":373},{"type":38,"tag":47,"props":932,"children":933},{},[934,936,942],{"type":44,"value":935},"For production, use API Keys instead of Auth Token. See ",{"type":38,"tag":111,"props":937,"children":939},{"className":938},[],[940],{"type":44,"value":941},"twilio-iam-auth-setup",{"type":44,"value":943},".",{"type":38,"tag":444,"props":945,"children":947},{"id":946},"twilio-cli-setup",[948],{"type":44,"value":949},"Twilio CLI Setup",{"type":38,"tag":47,"props":951,"children":952},{},[953],{"type":44,"value":954},"The CLI is useful for quick operations and local webhook testing.",{"type":38,"tag":103,"props":956,"children":958},{"className":105,"code":957,"language":107,"meta":108,"style":108},"# Install (macOS)\nbrew tap twilio\u002Fbrew && brew install twilio\n\n# Install (npm -- all platforms)\nnpm install -g twilio-cli\n\n# Login (creates an API key automatically)\ntwilio login\n\n# Verify setup\ntwilio phone-numbers:list\n",[959],{"type":38,"tag":111,"props":960,"children":961},{"__ignoreMap":108},[962,971,1007,1014,1022,1043,1050,1058,1070,1077,1085],{"type":38,"tag":115,"props":963,"children":964},{"class":117,"line":118},[965],{"type":38,"tag":115,"props":966,"children":968},{"style":967},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[969],{"type":44,"value":970},"# Install (macOS)\n",{"type":38,"tag":115,"props":972,"children":973},{"class":117,"line":145},[974,979,984,989,994,999,1003],{"type":38,"tag":115,"props":975,"children":976},{"style":207},[977],{"type":44,"value":978},"brew",{"type":38,"tag":115,"props":980,"children":981},{"style":213},[982],{"type":44,"value":983}," tap",{"type":38,"tag":115,"props":985,"children":986},{"style":213},[987],{"type":44,"value":988}," twilio\u002Fbrew",{"type":38,"tag":115,"props":990,"children":991},{"style":134},[992],{"type":44,"value":993}," &&",{"type":38,"tag":115,"props":995,"children":996},{"style":207},[997],{"type":44,"value":998}," brew",{"type":38,"tag":115,"props":1000,"children":1001},{"style":213},[1002],{"type":44,"value":216},{"type":38,"tag":115,"props":1004,"children":1005},{"style":213},[1006],{"type":44,"value":221},{"type":38,"tag":115,"props":1008,"children":1009},{"class":117,"line":249},[1010],{"type":38,"tag":115,"props":1011,"children":1012},{"emptyLinePlaceholder":253},[1013],{"type":44,"value":256},{"type":38,"tag":115,"props":1015,"children":1016},{"class":117,"line":167},[1017],{"type":38,"tag":115,"props":1018,"children":1019},{"style":967},[1020],{"type":44,"value":1021},"# Install (npm -- all platforms)\n",{"type":38,"tag":115,"props":1023,"children":1024},{"class":117,"line":267},[1025,1029,1033,1038],{"type":38,"tag":115,"props":1026,"children":1027},{"style":207},[1028],{"type":44,"value":340},{"type":38,"tag":115,"props":1030,"children":1031},{"style":213},[1032],{"type":44,"value":216},{"type":38,"tag":115,"props":1034,"children":1035},{"style":213},[1036],{"type":44,"value":1037}," -g",{"type":38,"tag":115,"props":1039,"children":1040},{"style":213},[1041],{"type":44,"value":1042}," twilio-cli\n",{"type":38,"tag":115,"props":1044,"children":1045},{"class":117,"line":276},[1046],{"type":38,"tag":115,"props":1047,"children":1048},{"emptyLinePlaceholder":253},[1049],{"type":44,"value":256},{"type":38,"tag":115,"props":1051,"children":1052},{"class":117,"line":26},[1053],{"type":38,"tag":115,"props":1054,"children":1055},{"style":967},[1056],{"type":44,"value":1057},"# Login (creates an API key automatically)\n",{"type":38,"tag":115,"props":1059,"children":1060},{"class":117,"line":293},[1061,1065],{"type":38,"tag":115,"props":1062,"children":1063},{"style":207},[1064],{"type":44,"value":8},{"type":38,"tag":115,"props":1066,"children":1067},{"style":213},[1068],{"type":44,"value":1069}," login\n",{"type":38,"tag":115,"props":1071,"children":1072},{"class":117,"line":302},[1073],{"type":38,"tag":115,"props":1074,"children":1075},{"emptyLinePlaceholder":253},[1076],{"type":44,"value":256},{"type":38,"tag":115,"props":1078,"children":1079},{"class":117,"line":311},[1080],{"type":38,"tag":115,"props":1081,"children":1082},{"style":967},[1083],{"type":44,"value":1084},"# Verify setup\n",{"type":38,"tag":115,"props":1086,"children":1088},{"class":117,"line":1087},11,[1089,1093],{"type":38,"tag":115,"props":1090,"children":1091},{"style":207},[1092],{"type":44,"value":8},{"type":38,"tag":115,"props":1094,"children":1095},{"style":213},[1096],{"type":44,"value":1097}," phone-numbers:list\n",{"type":38,"tag":47,"props":1099,"children":1100},{},[1101],{"type":44,"value":1102},"The CLI stores profiles for switching between accounts:",{"type":38,"tag":103,"props":1104,"children":1106},{"className":105,"code":1105,"language":107,"meta":108,"style":108},"# List profiles\ntwilio profiles:list\n\n# Switch active profile\ntwilio profiles:use my-project\n\n# Use environment variables instead of profiles\nexport TWILIO_ACCOUNT_SID=ACxxxxxxxx\nexport TWILIO_AUTH_TOKEN=xxxxxxxx\n",[1107],{"type":38,"tag":111,"props":1108,"children":1109},{"__ignoreMap":108},[1110,1118,1130,1137,1145,1162,1169,1177,1197],{"type":38,"tag":115,"props":1111,"children":1112},{"class":117,"line":118},[1113],{"type":38,"tag":115,"props":1114,"children":1115},{"style":967},[1116],{"type":44,"value":1117},"# List profiles\n",{"type":38,"tag":115,"props":1119,"children":1120},{"class":117,"line":145},[1121,1125],{"type":38,"tag":115,"props":1122,"children":1123},{"style":207},[1124],{"type":44,"value":8},{"type":38,"tag":115,"props":1126,"children":1127},{"style":213},[1128],{"type":44,"value":1129}," profiles:list\n",{"type":38,"tag":115,"props":1131,"children":1132},{"class":117,"line":249},[1133],{"type":38,"tag":115,"props":1134,"children":1135},{"emptyLinePlaceholder":253},[1136],{"type":44,"value":256},{"type":38,"tag":115,"props":1138,"children":1139},{"class":117,"line":167},[1140],{"type":38,"tag":115,"props":1141,"children":1142},{"style":967},[1143],{"type":44,"value":1144},"# Switch active profile\n",{"type":38,"tag":115,"props":1146,"children":1147},{"class":117,"line":267},[1148,1152,1157],{"type":38,"tag":115,"props":1149,"children":1150},{"style":207},[1151],{"type":44,"value":8},{"type":38,"tag":115,"props":1153,"children":1154},{"style":213},[1155],{"type":44,"value":1156}," profiles:use",{"type":38,"tag":115,"props":1158,"children":1159},{"style":213},[1160],{"type":44,"value":1161}," my-project\n",{"type":38,"tag":115,"props":1163,"children":1164},{"class":117,"line":276},[1165],{"type":38,"tag":115,"props":1166,"children":1167},{"emptyLinePlaceholder":253},[1168],{"type":44,"value":256},{"type":38,"tag":115,"props":1170,"children":1171},{"class":117,"line":26},[1172],{"type":38,"tag":115,"props":1173,"children":1174},{"style":967},[1175],{"type":44,"value":1176},"# Use environment variables instead of profiles\n",{"type":38,"tag":115,"props":1178,"children":1179},{"class":117,"line":293},[1180,1184,1188,1192],{"type":38,"tag":115,"props":1181,"children":1182},{"style":122},[1183],{"type":44,"value":125},{"type":38,"tag":115,"props":1185,"children":1186},{"style":128},[1187],{"type":44,"value":131},{"type":38,"tag":115,"props":1189,"children":1190},{"style":134},[1191],{"type":44,"value":137},{"type":38,"tag":115,"props":1193,"children":1194},{"style":128},[1195],{"type":44,"value":1196},"ACxxxxxxxx\n",{"type":38,"tag":115,"props":1198,"children":1199},{"class":117,"line":302},[1200,1204,1208,1212],{"type":38,"tag":115,"props":1201,"children":1202},{"style":122},[1203],{"type":44,"value":125},{"type":38,"tag":115,"props":1205,"children":1206},{"style":128},[1207],{"type":44,"value":155},{"type":38,"tag":115,"props":1209,"children":1210},{"style":134},[1211],{"type":44,"value":137},{"type":38,"tag":115,"props":1213,"children":1214},{"style":128},[1215],{"type":44,"value":1216},"xxxxxxxx\n",{"type":38,"tag":47,"props":1218,"children":1219},{},[1220,1222,1228],{"type":44,"value":1221},"Precedence: ",{"type":38,"tag":111,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":44,"value":1227},"--profile",{"type":44,"value":1229}," flag > environment variables > active profile.",{"type":38,"tag":444,"props":1231,"children":1233},{"id":1232},"accounts-and-subaccounts",[1234],{"type":44,"value":1235},"Accounts and Subaccounts",{"type":38,"tag":47,"props":1237,"children":1238},{},[1239,1244],{"type":38,"tag":190,"props":1240,"children":1241},{},[1242],{"type":44,"value":1243},"Creating a new Twilio account:",{"type":44,"value":1245}," Accounts can only be created from the Console UI — there is no API for creating top-level accounts. A new account is automatically created when a user signs up. Additional accounts can be created from Console > My Accounts (or \"View all accounts\").",{"type":38,"tag":47,"props":1247,"children":1248},{},[1249,1254,1256,1262],{"type":38,"tag":190,"props":1250,"children":1251},{},[1252],{"type":44,"value":1253},"To see all your accounts:",{"type":44,"value":1255}," Console > My Accounts shows all accounts and subaccounts you have access to. For Organization-wide visibility, see Console > Admin > Accounts (requires Organization admin role). See ",{"type":38,"tag":111,"props":1257,"children":1259},{"className":1258},[],[1260],{"type":44,"value":1261},"twilio-organizations-setup",{"type":44,"value":1263}," for Organization-level governance.",{"type":38,"tag":444,"props":1265,"children":1267},{"id":1266},"subaccounts",[1268],{"type":44,"value":1269},"Subaccounts",{"type":38,"tag":47,"props":1271,"children":1272},{},[1273],{"type":44,"value":1274},"Subaccounts are child accounts under your main (parent) account. Use them for multi-tenant apps, per-customer isolation, or team separation.",{"type":38,"tag":47,"props":1276,"children":1277},{},[1278],{"type":38,"tag":190,"props":1279,"children":1280},{},[1281],{"type":44,"value":1282},"How they differ from the parent account:",{"type":38,"tag":1284,"props":1285,"children":1286},"ul",{},[1287,1299,1311,1323],{"type":38,"tag":67,"props":1288,"children":1289},{},[1290,1292,1297],{"type":44,"value":1291},"Resources (numbers, calls, messages) are ",{"type":38,"tag":190,"props":1293,"children":1294},{},[1295],{"type":44,"value":1296},"isolated",{"type":44,"value":1298}," — a subaccount cannot see the parent's resources or other subaccounts' resources",{"type":38,"tag":67,"props":1300,"children":1301},{},[1302,1304,1309],{"type":44,"value":1303},"Billing is ",{"type":38,"tag":190,"props":1305,"children":1306},{},[1307],{"type":44,"value":1308},"consolidated",{"type":44,"value":1310}," to the parent — a single Twilio balance for all subaccounts",{"type":38,"tag":67,"props":1312,"children":1313},{},[1314,1316,1321],{"type":44,"value":1315},"Voice and SMS permissions ",{"type":38,"tag":190,"props":1317,"children":1318},{},[1319],{"type":44,"value":1320},"inherit",{"type":44,"value":1322}," from the parent",{"type":38,"tag":67,"props":1324,"children":1325},{},[1326],{"type":44,"value":1327},"Phone numbers can be transferred between parent and subaccounts",{"type":38,"tag":47,"props":1329,"children":1330},{},[1331,1336],{"type":38,"tag":190,"props":1332,"children":1333},{},[1334],{"type":44,"value":1335},"Create via Console:",{"type":44,"value":1337}," Console > My Accounts > Create Subaccount",{"type":38,"tag":47,"props":1339,"children":1340},{},[1341],{"type":38,"tag":190,"props":1342,"children":1343},{},[1344],{"type":44,"value":1345},"Create via API:",{"type":38,"tag":47,"props":1347,"children":1348},{},[1349],{"type":38,"tag":190,"props":1350,"children":1351},{},[1352],{"type":44,"value":194},{"type":38,"tag":103,"props":1354,"children":1356},{"className":224,"code":1355,"language":226,"meta":108,"style":108},"subaccount = client.api.accounts.create(friendly_name=\"Customer A\")\nprint(f\"Subaccount SID: {subaccount.sid}\")\n# Store securely — auth_token is only shown at creation time\n# e.g., secrets_manager.store(\"subaccount_auth_token\", subaccount.auth_token)\n",[1357],{"type":38,"tag":111,"props":1358,"children":1359},{"__ignoreMap":108},[1360,1368,1376,1384],{"type":38,"tag":115,"props":1361,"children":1362},{"class":117,"line":118},[1363],{"type":38,"tag":115,"props":1364,"children":1365},{},[1366],{"type":44,"value":1367},"subaccount = client.api.accounts.create(friendly_name=\"Customer A\")\n",{"type":38,"tag":115,"props":1369,"children":1370},{"class":117,"line":145},[1371],{"type":38,"tag":115,"props":1372,"children":1373},{},[1374],{"type":44,"value":1375},"print(f\"Subaccount SID: {subaccount.sid}\")\n",{"type":38,"tag":115,"props":1377,"children":1378},{"class":117,"line":249},[1379],{"type":38,"tag":115,"props":1380,"children":1381},{},[1382],{"type":44,"value":1383},"# Store securely — auth_token is only shown at creation time\n",{"type":38,"tag":115,"props":1385,"children":1386},{"class":117,"line":167},[1387],{"type":38,"tag":115,"props":1388,"children":1389},{},[1390],{"type":44,"value":1391},"# e.g., secrets_manager.store(\"subaccount_auth_token\", subaccount.auth_token)\n",{"type":38,"tag":47,"props":1393,"children":1394},{},[1395],{"type":38,"tag":190,"props":1396,"children":1397},{},[1398],{"type":44,"value":325},{"type":38,"tag":103,"props":1400,"children":1404},{"className":1401,"code":1402,"language":1403,"meta":108,"style":108},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const subaccount = await client.api.accounts.create({ friendlyName: \"Customer A\" });\nconsole.log(`Subaccount SID: ${subaccount.sid}`);\n","javascript",[1405],{"type":38,"tag":111,"props":1406,"children":1407},{"__ignoreMap":108},[1408,1514],{"type":38,"tag":115,"props":1409,"children":1410},{"class":117,"line":118},[1411,1416,1421,1425,1431,1436,1440,1445,1449,1454,1458,1464,1469,1474,1480,1484,1489,1494,1499,1504,1509],{"type":38,"tag":115,"props":1412,"children":1413},{"style":122},[1414],{"type":44,"value":1415},"const",{"type":38,"tag":115,"props":1417,"children":1418},{"style":128},[1419],{"type":44,"value":1420}," subaccount ",{"type":38,"tag":115,"props":1422,"children":1423},{"style":134},[1424],{"type":44,"value":137},{"type":38,"tag":115,"props":1426,"children":1428},{"style":1427},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1429],{"type":44,"value":1430}," await",{"type":38,"tag":115,"props":1432,"children":1433},{"style":128},[1434],{"type":44,"value":1435}," client",{"type":38,"tag":115,"props":1437,"children":1438},{"style":134},[1439],{"type":44,"value":943},{"type":38,"tag":115,"props":1441,"children":1442},{"style":128},[1443],{"type":44,"value":1444},"api",{"type":38,"tag":115,"props":1446,"children":1447},{"style":134},[1448],{"type":44,"value":943},{"type":38,"tag":115,"props":1450,"children":1451},{"style":128},[1452],{"type":44,"value":1453},"accounts",{"type":38,"tag":115,"props":1455,"children":1456},{"style":134},[1457],{"type":44,"value":943},{"type":38,"tag":115,"props":1459,"children":1461},{"style":1460},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1462],{"type":44,"value":1463},"create",{"type":38,"tag":115,"props":1465,"children":1466},{"style":128},[1467],{"type":44,"value":1468},"(",{"type":38,"tag":115,"props":1470,"children":1471},{"style":134},[1472],{"type":44,"value":1473},"{",{"type":38,"tag":115,"props":1475,"children":1477},{"style":1476},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1478],{"type":44,"value":1479}," friendlyName",{"type":38,"tag":115,"props":1481,"children":1482},{"style":134},[1483],{"type":44,"value":101},{"type":38,"tag":115,"props":1485,"children":1486},{"style":134},[1487],{"type":44,"value":1488}," \"",{"type":38,"tag":115,"props":1490,"children":1491},{"style":213},[1492],{"type":44,"value":1493},"Customer A",{"type":38,"tag":115,"props":1495,"children":1496},{"style":134},[1497],{"type":44,"value":1498},"\"",{"type":38,"tag":115,"props":1500,"children":1501},{"style":134},[1502],{"type":44,"value":1503}," }",{"type":38,"tag":115,"props":1505,"children":1506},{"style":128},[1507],{"type":44,"value":1508},")",{"type":38,"tag":115,"props":1510,"children":1511},{"style":134},[1512],{"type":44,"value":1513},";\n",{"type":38,"tag":115,"props":1515,"children":1516},{"class":117,"line":145},[1517,1522,1526,1531,1535,1540,1545,1550,1555,1559,1564,1569,1573],{"type":38,"tag":115,"props":1518,"children":1519},{"style":128},[1520],{"type":44,"value":1521},"console",{"type":38,"tag":115,"props":1523,"children":1524},{"style":134},[1525],{"type":44,"value":943},{"type":38,"tag":115,"props":1527,"children":1528},{"style":1460},[1529],{"type":44,"value":1530},"log",{"type":38,"tag":115,"props":1532,"children":1533},{"style":128},[1534],{"type":44,"value":1468},{"type":38,"tag":115,"props":1536,"children":1537},{"style":134},[1538],{"type":44,"value":1539},"`",{"type":38,"tag":115,"props":1541,"children":1542},{"style":213},[1543],{"type":44,"value":1544},"Subaccount SID: ",{"type":38,"tag":115,"props":1546,"children":1547},{"style":134},[1548],{"type":44,"value":1549},"${",{"type":38,"tag":115,"props":1551,"children":1552},{"style":128},[1553],{"type":44,"value":1554},"subaccount",{"type":38,"tag":115,"props":1556,"children":1557},{"style":134},[1558],{"type":44,"value":943},{"type":38,"tag":115,"props":1560,"children":1561},{"style":128},[1562],{"type":44,"value":1563},"sid",{"type":38,"tag":115,"props":1565,"children":1566},{"style":134},[1567],{"type":44,"value":1568},"}`",{"type":38,"tag":115,"props":1570,"children":1571},{"style":128},[1572],{"type":44,"value":1508},{"type":38,"tag":115,"props":1574,"children":1575},{"style":134},[1576],{"type":44,"value":1513},{"type":38,"tag":444,"props":1578,"children":1580},{"id":1579},"subaccount-credential-isolation",[1581],{"type":44,"value":1582},"Subaccount Credential Isolation",{"type":38,"tag":47,"props":1584,"children":1585},{},[1586,1591],{"type":38,"tag":190,"props":1587,"children":1588},{},[1589],{"type":44,"value":1590},"Always use the subaccount's own credentials",{"type":44,"value":1592}," (API Keys or Auth Token) when accessing subaccount resources — do NOT use the parent account's credentials as a shortcut.",{"type":38,"tag":47,"props":1594,"children":1595},{},[1596],{"type":38,"tag":190,"props":1597,"children":1598},{},[1599],{"type":44,"value":1600},"Python — access subaccount resources",{"type":38,"tag":103,"props":1602,"children":1604},{"className":224,"code":1603,"language":226,"meta":108,"style":108},"# Correct: use subaccount credentials\nsub_client = Client(subaccount.sid, subaccount.auth_token)\ncall = sub_client.calls.create(\n    to=\"+15558675310\",\n    from_=\"+15017122661\",  # number owned by this subaccount\n    url=\"https:\u002F\u002Fyourapp.com\u002Fvoice\"\n)\n\n# Also correct: parent credentials with subaccount SID (v2010 API only)\nparent_client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\ncalls = parent_client.api.accounts(subaccount.sid).calls.list()\n",[1605],{"type":38,"tag":111,"props":1606,"children":1607},{"__ignoreMap":108},[1608,1616,1624,1632,1640,1648,1656,1663,1670,1678,1686],{"type":38,"tag":115,"props":1609,"children":1610},{"class":117,"line":118},[1611],{"type":38,"tag":115,"props":1612,"children":1613},{},[1614],{"type":44,"value":1615},"# Correct: use subaccount credentials\n",{"type":38,"tag":115,"props":1617,"children":1618},{"class":117,"line":145},[1619],{"type":38,"tag":115,"props":1620,"children":1621},{},[1622],{"type":44,"value":1623},"sub_client = Client(subaccount.sid, subaccount.auth_token)\n",{"type":38,"tag":115,"props":1625,"children":1626},{"class":117,"line":249},[1627],{"type":38,"tag":115,"props":1628,"children":1629},{},[1630],{"type":44,"value":1631},"call = sub_client.calls.create(\n",{"type":38,"tag":115,"props":1633,"children":1634},{"class":117,"line":167},[1635],{"type":38,"tag":115,"props":1636,"children":1637},{},[1638],{"type":44,"value":1639},"    to=\"+15558675310\",\n",{"type":38,"tag":115,"props":1641,"children":1642},{"class":117,"line":267},[1643],{"type":38,"tag":115,"props":1644,"children":1645},{},[1646],{"type":44,"value":1647},"    from_=\"+15017122661\",  # number owned by this subaccount\n",{"type":38,"tag":115,"props":1649,"children":1650},{"class":117,"line":276},[1651],{"type":38,"tag":115,"props":1652,"children":1653},{},[1654],{"type":44,"value":1655},"    url=\"https:\u002F\u002Fyourapp.com\u002Fvoice\"\n",{"type":38,"tag":115,"props":1657,"children":1658},{"class":117,"line":26},[1659],{"type":38,"tag":115,"props":1660,"children":1661},{},[1662],{"type":44,"value":308},{"type":38,"tag":115,"props":1664,"children":1665},{"class":117,"line":293},[1666],{"type":38,"tag":115,"props":1667,"children":1668},{"emptyLinePlaceholder":253},[1669],{"type":44,"value":256},{"type":38,"tag":115,"props":1671,"children":1672},{"class":117,"line":302},[1673],{"type":38,"tag":115,"props":1674,"children":1675},{},[1676],{"type":44,"value":1677},"# Also correct: parent credentials with subaccount SID (v2010 API only)\n",{"type":38,"tag":115,"props":1679,"children":1680},{"class":117,"line":311},[1681],{"type":38,"tag":115,"props":1682,"children":1683},{},[1684],{"type":44,"value":1685},"parent_client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":38,"tag":115,"props":1687,"children":1688},{"class":117,"line":1087},[1689],{"type":38,"tag":115,"props":1690,"children":1691},{},[1692],{"type":44,"value":1693},"calls = parent_client.api.accounts(subaccount.sid).calls.list()\n",{"type":38,"tag":47,"props":1695,"children":1696},{},[1697,1702,1704,1710,1712,1718,1720,1725],{"type":38,"tag":190,"props":1698,"children":1699},{},[1700],{"type":44,"value":1701},"Critical:",{"type":44,"value":1703}," Resources on separate subdomains (",{"type":38,"tag":111,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":44,"value":1709},"studio.twilio.com",{"type":44,"value":1711},", ",{"type":38,"tag":111,"props":1713,"children":1715},{"className":1714},[],[1716],{"type":44,"value":1717},"taskrouter.twilio.com",{"type":44,"value":1719},") ",{"type":38,"tag":190,"props":1721,"children":1722},{},[1723],{"type":44,"value":1724},"require subaccount-specific credentials",{"type":44,"value":1726},". Parent account credentials will not work on these subdomains.",{"type":38,"tag":444,"props":1728,"children":1730},{"id":1729},"subaccount-limits",[1731],{"type":44,"value":1732},"Subaccount Limits",{"type":38,"tag":1284,"props":1734,"children":1735},{},[1736,1746,1756,1766,1784],{"type":38,"tag":67,"props":1737,"children":1738},{},[1739,1744],{"type":38,"tag":190,"props":1740,"children":1741},{},[1742],{"type":44,"value":1743},"Default limit:",{"type":44,"value":1745}," 1,000 subaccounts per parent account",{"type":38,"tag":67,"props":1747,"children":1748},{},[1749,1754],{"type":38,"tag":190,"props":1750,"children":1751},{},[1752],{"type":44,"value":1753},"Trial accounts:",{"type":44,"value":1755}," Can create only 1 subaccount — upgrade to create more",{"type":38,"tag":67,"props":1757,"children":1758},{},[1759,1764],{"type":38,"tag":190,"props":1760,"children":1761},{},[1762],{"type":44,"value":1763},"At the limit:",{"type":44,"value":1765}," Contact Twilio Support with your use case to request an increase",{"type":38,"tag":67,"props":1767,"children":1768},{},[1769,1774,1776,1782],{"type":38,"tag":190,"props":1770,"children":1771},{},[1772],{"type":44,"value":1773},"Closing:",{"type":44,"value":1775}," Set status to ",{"type":38,"tag":111,"props":1777,"children":1779},{"className":1778},[],[1780],{"type":44,"value":1781},"closed",{"type":44,"value":1783}," via API or Console. Closed subaccounts are automatically deleted after 30 days",{"type":38,"tag":67,"props":1785,"children":1786},{},[1787,1792],{"type":38,"tag":190,"props":1788,"children":1789},{},[1790],{"type":44,"value":1791},"Suspension cascade:",{"type":44,"value":1793}," Suspending the parent account automatically suspends ALL subaccounts",{"type":38,"tag":444,"props":1795,"children":1797},{"id":1796},"upgrade-from-trial",[1798],{"type":44,"value":1799},"Upgrade from Trial",{"type":38,"tag":63,"props":1801,"children":1802},{},[1803,1821,1826],{"type":38,"tag":67,"props":1804,"children":1805},{},[1806,1807,1812,1814],{"type":44,"value":481},{"type":38,"tag":190,"props":1808,"children":1809},{},[1810],{"type":44,"value":1811},"Upgrade",{"type":44,"value":1813}," at the top of the Console, or go to ",{"type":38,"tag":73,"props":1815,"children":1818},{"href":1816,"rel":1817},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fadmin\u002Fbilling",[77],[1819],{"type":44,"value":1820},"Console > Admin > Account billing",{"type":38,"tag":67,"props":1822,"children":1823},{},[1824],{"type":44,"value":1825},"Provide name, address, and payment details",{"type":38,"tag":67,"props":1827,"children":1828},{},[1829],{"type":44,"value":1830},"Your trial phone number carries over; trial balance does not",{"type":38,"tag":53,"props":1832,"children":1833},{},[],{"type":38,"tag":39,"props":1835,"children":1837},{"id":1836},"trial-restrictions-at-a-glance",[1838],{"type":44,"value":1839},"Trial Restrictions at a Glance",{"type":38,"tag":506,"props":1841,"children":1842},{},[1843,1864],{"type":38,"tag":510,"props":1844,"children":1845},{},[1846],{"type":38,"tag":514,"props":1847,"children":1848},{},[1849,1854,1859],{"type":38,"tag":518,"props":1850,"children":1851},{},[1852],{"type":44,"value":1853},"Feature",{"type":38,"tag":518,"props":1855,"children":1856},{},[1857],{"type":44,"value":1858},"Trial",{"type":38,"tag":518,"props":1860,"children":1861},{},[1862],{"type":44,"value":1863},"Upgraded",{"type":38,"tag":529,"props":1865,"children":1866},{},[1867,1885,1903,1920,1938,1954,1971,1987],{"type":38,"tag":514,"props":1868,"children":1869},{},[1870,1875,1880],{"type":38,"tag":536,"props":1871,"children":1872},{},[1873],{"type":44,"value":1874},"Phone numbers",{"type":38,"tag":536,"props":1876,"children":1877},{},[1878],{"type":44,"value":1879},"1",{"type":38,"tag":536,"props":1881,"children":1882},{},[1883],{"type":44,"value":1884},"Unlimited",{"type":38,"tag":514,"props":1886,"children":1887},{},[1888,1893,1898],{"type":38,"tag":536,"props":1889,"children":1890},{},[1891],{"type":44,"value":1892},"Send to unverified numbers",{"type":38,"tag":536,"props":1894,"children":1895},{},[1896],{"type":44,"value":1897},"No",{"type":38,"tag":536,"props":1899,"children":1900},{},[1901],{"type":44,"value":1902},"Yes",{"type":38,"tag":514,"props":1904,"children":1905},{},[1906,1911,1916],{"type":38,"tag":536,"props":1907,"children":1908},{},[1909],{"type":44,"value":1910},"Outbound message prefix",{"type":38,"tag":536,"props":1912,"children":1913},{},[1914],{"type":44,"value":1915},"Yes (visible to recipient)",{"type":38,"tag":536,"props":1917,"children":1918},{},[1919],{"type":44,"value":1897},{"type":38,"tag":514,"props":1921,"children":1922},{},[1923,1928,1933],{"type":38,"tag":536,"props":1924,"children":1925},{},[1926],{"type":44,"value":1927},"Verified caller IDs",{"type":38,"tag":536,"props":1929,"children":1930},{},[1931],{"type":44,"value":1932},"Up to 5",{"type":38,"tag":536,"props":1934,"children":1935},{},[1936],{"type":44,"value":1937},"Not needed",{"type":38,"tag":514,"props":1939,"children":1940},{},[1941,1946,1950],{"type":38,"tag":536,"props":1942,"children":1943},{},[1944],{"type":44,"value":1945},"A2P 10DLC registration",{"type":38,"tag":536,"props":1947,"children":1948},{},[1949],{"type":44,"value":1897},{"type":38,"tag":536,"props":1951,"children":1952},{},[1953],{"type":44,"value":1902},{"type":38,"tag":514,"props":1955,"children":1956},{},[1957,1962,1967],{"type":38,"tag":536,"props":1958,"children":1959},{},[1960],{"type":44,"value":1961},"Daily WhatsApp messages",{"type":38,"tag":536,"props":1963,"children":1964},{},[1965],{"type":44,"value":1966},"50",{"type":38,"tag":536,"props":1968,"children":1969},{},[1970],{"type":44,"value":1884},{"type":38,"tag":514,"props":1972,"children":1973},{},[1974,1978,1982],{"type":38,"tag":536,"props":1975,"children":1976},{},[1977],{"type":44,"value":631},{"type":38,"tag":536,"props":1979,"children":1980},{},[1981],{"type":44,"value":1897},{"type":38,"tag":536,"props":1983,"children":1984},{},[1985],{"type":44,"value":1986},"Yes (after onboarding)",{"type":38,"tag":514,"props":1988,"children":1989},{},[1990,1995,2000],{"type":38,"tag":536,"props":1991,"children":1992},{},[1993],{"type":44,"value":1994},"Voice: outbound calls",{"type":38,"tag":536,"props":1996,"children":1997},{},[1998],{"type":44,"value":1999},"Domestic only",{"type":38,"tag":536,"props":2001,"children":2002},{},[2003],{"type":44,"value":2004},"International",{"type":38,"tag":53,"props":2006,"children":2007},{},[],{"type":38,"tag":39,"props":2009,"children":2011},{"id":2010},"cannot",[2012],{"type":44,"value":2013},"CANNOT",{"type":38,"tag":1284,"props":2015,"children":2016},{},[2017,2027,2037,2047,2057,2067,2077,2094,2104],{"type":38,"tag":67,"props":2018,"children":2019},{},[2020,2025],{"type":38,"tag":190,"props":2021,"children":2022},{},[2023],{"type":44,"value":2024},"Cannot create top-level accounts via API",{"type":44,"value":2026}," — Only Console UI. A new account is created at signup; additional accounts from Console > My Accounts.",{"type":38,"tag":67,"props":2028,"children":2029},{},[2030,2035],{"type":38,"tag":190,"props":2031,"children":2032},{},[2033],{"type":44,"value":2034},"Cannot create more than 1 subaccount on trial",{"type":44,"value":2036}," — Upgrade your account first, then you can create up to 1,000.",{"type":38,"tag":67,"props":2038,"children":2039},{},[2040,2045],{"type":38,"tag":190,"props":2041,"children":2042},{},[2043],{"type":44,"value":2044},"Cannot access subdomain resources with parent credentials",{"type":44,"value":2046}," — Studio, TaskRouter, and other subdomain APIs require subaccount-specific credentials. Parent credentials return auth errors.",{"type":38,"tag":67,"props":2048,"children":2049},{},[2050,2055],{"type":38,"tag":190,"props":2051,"children":2052},{},[2053],{"type":44,"value":2054},"Cannot undo a closed subaccount after 30 days",{"type":44,"value":2056}," — Closed subaccounts are permanently deleted. Suspension is reversible; closure is not.",{"type":38,"tag":67,"props":2058,"children":2059},{},[2060,2065],{"type":38,"tag":190,"props":2061,"children":2062},{},[2063],{"type":44,"value":2064},"Cannot transfer trial balance to a paid account",{"type":44,"value":2066}," — Trial credits are forfeited on upgrade.",{"type":38,"tag":67,"props":2068,"children":2069},{},[2070,2075],{"type":38,"tag":190,"props":2071,"children":2072},{},[2073],{"type":44,"value":2074},"Cannot send to unverified numbers on trial",{"type":44,"value":2076}," — Only verified Caller IDs (up to 5) can receive messages or calls.",{"type":38,"tag":67,"props":2078,"children":2079},{},[2080,2085,2087,2093],{"type":38,"tag":190,"props":2081,"children":2082},{},[2083],{"type":44,"value":2084},"Auth Token rotation invalidates ALL API keys",{"type":44,"value":2086}," — This is a one-way door. Use API Keys from day one. See ",{"type":38,"tag":111,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":44,"value":2092},"twilio-security-api-auth",{"type":44,"value":943},{"type":38,"tag":67,"props":2095,"children":2096},{},[2097,2102],{"type":38,"tag":190,"props":2098,"children":2099},{},[2100],{"type":44,"value":2101},"API Key secrets shown only once at creation",{"type":44,"value":2103}," — Store them immediately. Cannot be retrieved afterward.",{"type":38,"tag":67,"props":2105,"children":2106},{},[2107,2112],{"type":38,"tag":190,"props":2108,"children":2109},{},[2110],{"type":44,"value":2111},"AI Assistants and ConversationRelay require approval",{"type":44,"value":2113}," — Limited access products. Activation is not instant.",{"type":38,"tag":53,"props":2115,"children":2116},{},[],{"type":38,"tag":39,"props":2118,"children":2120},{"id":2119},"next-steps",[2121],{"type":44,"value":2122},"Next Steps",{"type":38,"tag":1284,"props":2124,"children":2125},{},[2126,2141,2155,2170,2185,2200,2215],{"type":38,"tag":67,"props":2127,"children":2128},{},[2129,2134,2136],{"type":38,"tag":190,"props":2130,"children":2131},{},[2132],{"type":44,"value":2133},"Organization governance (SSO, SCIM, multi-team):",{"type":44,"value":2135}," ",{"type":38,"tag":111,"props":2137,"children":2139},{"className":2138},[],[2140],{"type":44,"value":1261},{"type":38,"tag":67,"props":2142,"children":2143},{},[2144,2149,2150],{"type":38,"tag":190,"props":2145,"children":2146},{},[2147],{"type":44,"value":2148},"Secure credential management and API Keys:",{"type":44,"value":2135},{"type":38,"tag":111,"props":2151,"children":2153},{"className":2152},[],[2154],{"type":44,"value":2092},{"type":38,"tag":67,"props":2156,"children":2157},{},[2158,2163,2164],{"type":38,"tag":190,"props":2159,"children":2160},{},[2161],{"type":44,"value":2162},"Send your first SMS:",{"type":44,"value":2135},{"type":38,"tag":111,"props":2165,"children":2167},{"className":2166},[],[2168],{"type":44,"value":2169},"twilio-sms-send-message",{"type":38,"tag":67,"props":2171,"children":2172},{},[2173,2178,2179],{"type":38,"tag":190,"props":2174,"children":2175},{},[2176],{"type":44,"value":2177},"Send your first WhatsApp message:",{"type":44,"value":2135},{"type":38,"tag":111,"props":2180,"children":2182},{"className":2181},[],[2183],{"type":44,"value":2184},"twilio-whatsapp-send-message",{"type":38,"tag":67,"props":2186,"children":2187},{},[2188,2193,2194],{"type":38,"tag":190,"props":2189,"children":2190},{},[2191],{"type":44,"value":2192},"Receive incoming messages:",{"type":44,"value":2135},{"type":38,"tag":111,"props":2195,"children":2197},{"className":2196},[],[2198],{"type":44,"value":2199},"twilio-messaging-webhooks",{"type":38,"tag":67,"props":2201,"children":2202},{},[2203,2208,2209],{"type":38,"tag":190,"props":2204,"children":2205},{},[2206],{"type":44,"value":2207},"US SMS compliance (A2P 10DLC):",{"type":44,"value":2135},{"type":38,"tag":111,"props":2210,"children":2212},{"className":2211},[],[2213],{"type":44,"value":2214},"twilio-compliance-onboarding",{"type":38,"tag":67,"props":2216,"children":2217},{},[2218,2223,2224],{"type":38,"tag":190,"props":2219,"children":2220},{},[2221],{"type":44,"value":2222},"Webhook setup:",{"type":44,"value":2135},{"type":38,"tag":111,"props":2225,"children":2227},{"className":2226},[],[2228],{"type":44,"value":2229},"twilio-webhook-architecture",{"type":38,"tag":2231,"props":2232,"children":2233},"style",{},[2234],{"type":44,"value":2235},"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":2237,"total":2409},[2238,2244,2264,2275,2287,2302,2319,2334,2350,2363,2379,2397],{"slug":4,"name":4,"fn":5,"description":6,"org":2239,"tags":2240,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2241,2242,2243],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":2245,"name":2245,"fn":2246,"description":2247,"org":2248,"tags":2249,"stars":22,"repoUrl":23,"updatedAt":2263},"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},[2250,2253,2256,2259,2262],{"name":2251,"slug":2252,"type":15},"Agents","agents",{"name":2254,"slug":2255,"type":15},"AI","ai",{"name":2257,"slug":2258,"type":15},"Coaching","coaching",{"name":2260,"slug":2261,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":2265,"name":2265,"fn":2266,"description":2267,"org":2268,"tags":2269,"stars":22,"repoUrl":23,"updatedAt":2274},"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},[2270,2271,2272,2273],{"name":2251,"slug":2252,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":2276,"name":2276,"fn":2277,"description":2278,"org":2279,"tags":2280,"stars":22,"repoUrl":23,"updatedAt":2286},"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},[2281,2282,2285],{"name":2251,"slug":2252,"type":15},{"name":2283,"slug":2284,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":2288,"name":2288,"fn":2289,"description":2290,"org":2291,"tags":2292,"stars":22,"repoUrl":23,"updatedAt":2301},"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},[2293,2296,2299,2300],{"name":2294,"slug":2295,"type":15},"Audio","audio",{"name":2297,"slug":2298,"type":15},"Compliance","compliance",{"name":2260,"slug":2261,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":2303,"name":2303,"fn":2304,"description":2305,"org":2306,"tags":2307,"stars":22,"repoUrl":23,"updatedAt":2318},"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},[2308,2311,2314,2317],{"name":2309,"slug":2310,"type":15},"CLI","cli",{"name":2312,"slug":2313,"type":15},"Local Development","local-development",{"name":2315,"slug":2316,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":2214,"name":2214,"fn":2320,"description":2321,"org":2322,"tags":2323,"stars":22,"repoUrl":23,"updatedAt":2333},"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},[2324,2325,2328,2329,2330],{"name":2297,"slug":2298,"type":15},{"name":2326,"slug":2327,"type":15},"Messaging","messaging",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":2331,"slug":2332,"type":15},"WhatsApp","whatsapp","2026-07-17T06:05:47.897229",{"slug":2335,"name":2335,"fn":2336,"description":2337,"org":2338,"tags":2339,"stars":22,"repoUrl":23,"updatedAt":2349},"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},[2340,2341,2342,2345,2348],{"name":2297,"slug":2298,"type":15},{"name":2326,"slug":2327,"type":15},{"name":2343,"slug":2344,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":2346,"slug":2347,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":2351,"name":2351,"fn":2352,"description":2353,"org":2354,"tags":2355,"stars":22,"repoUrl":23,"updatedAt":2362},"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},[2356,2357,2358,2361],{"name":2294,"slug":2295,"type":15},{"name":20,"slug":21,"type":15},{"name":2359,"slug":2360,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":2364,"name":2364,"fn":2365,"description":2366,"org":2367,"tags":2368,"stars":22,"repoUrl":23,"updatedAt":2378},"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},[2369,2372,2373,2374,2377],{"name":2370,"slug":2371,"type":15},"Email","email",{"name":2326,"slug":2327,"type":15},{"name":13,"slug":14,"type":15},{"name":2375,"slug":2376,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":2380,"name":2380,"fn":2381,"description":2382,"org":2383,"tags":2384,"stars":22,"repoUrl":23,"updatedAt":2396},"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},[2385,2386,2389,2392,2395],{"name":2251,"slug":2252,"type":15},{"name":2387,"slug":2388,"type":15},"Analytics","analytics",{"name":2390,"slug":2391,"type":15},"Monitoring","monitoring",{"name":2393,"slug":2394,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":2398,"name":2398,"fn":2399,"description":2400,"org":2401,"tags":2402,"stars":22,"repoUrl":23,"updatedAt":2408},"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},[2403,2404,2407],{"name":2251,"slug":2252,"type":15},{"name":2405,"slug":2406,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724",57,{"items":2411,"total":2409},[2412,2418,2426,2433,2439,2446,2453],{"slug":4,"name":4,"fn":5,"description":6,"org":2413,"tags":2414,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2415,2416,2417],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":2245,"name":2245,"fn":2246,"description":2247,"org":2419,"tags":2420,"stars":22,"repoUrl":23,"updatedAt":2263},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2421,2422,2423,2424,2425],{"name":2251,"slug":2252,"type":15},{"name":2254,"slug":2255,"type":15},{"name":2257,"slug":2258,"type":15},{"name":2260,"slug":2261,"type":15},{"name":9,"slug":8,"type":15},{"slug":2265,"name":2265,"fn":2266,"description":2267,"org":2427,"tags":2428,"stars":22,"repoUrl":23,"updatedAt":2274},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2429,2430,2431,2432],{"name":2251,"slug":2252,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"slug":2276,"name":2276,"fn":2277,"description":2278,"org":2434,"tags":2435,"stars":22,"repoUrl":23,"updatedAt":2286},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2436,2437,2438],{"name":2251,"slug":2252,"type":15},{"name":2283,"slug":2284,"type":15},{"name":9,"slug":8,"type":15},{"slug":2288,"name":2288,"fn":2289,"description":2290,"org":2440,"tags":2441,"stars":22,"repoUrl":23,"updatedAt":2301},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2442,2443,2444,2445],{"name":2294,"slug":2295,"type":15},{"name":2297,"slug":2298,"type":15},{"name":2260,"slug":2261,"type":15},{"name":9,"slug":8,"type":15},{"slug":2303,"name":2303,"fn":2304,"description":2305,"org":2447,"tags":2448,"stars":22,"repoUrl":23,"updatedAt":2318},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2449,2450,2451,2452],{"name":2309,"slug":2310,"type":15},{"name":2312,"slug":2313,"type":15},{"name":2315,"slug":2316,"type":15},{"name":9,"slug":8,"type":15},{"slug":2214,"name":2214,"fn":2320,"description":2321,"org":2454,"tags":2455,"stars":22,"repoUrl":23,"updatedAt":2333},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2456,2457,2458,2459,2460],{"name":2297,"slug":2298,"type":15},{"name":2326,"slug":2327,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":2331,"slug":2332,"type":15}]