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