[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-sms-send-message":3,"mdc--v9v2g4-key":39,"related-org-openai-twilio-sms-send-message":1624,"related-repo-openai-twilio-sms-send-message":1831},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"twilio-sms-send-message","troubleshoot and send Twilio SMS messages","SMS and MMS deep-dive reference. Covers SMS-specific error codes, message filtering troubleshooting (\"Messages Being Filtered or Blocked?\" diagnostic checklist), MMS media support (US\u002FCA\u002FAU only), and SMS pumping indicators. For sending SMS, use twilio-send-message instead. Use this skill only when debugging SMS delivery issues or needing SMS-specific details not in the consolidated send skill.\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,25],{"name":13,"slug":14,"type":15},"SMS","sms","tag",{"name":17,"slug":18,"type":15},"Messaging","messaging",{"name":20,"slug":21,"type":15},"Debugging","debugging",{"name":23,"slug":24,"type":15},"Communications","communications",{"name":26,"slug":27,"type":15},"Twilio","twilio",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftwilio-developer-kit\u002Fskills\u002Ftwilio-sms-send-message","---\nname: twilio-sms-send-message\ndescription: >\n  SMS and MMS deep-dive reference. Covers SMS-specific error codes,\n  message filtering troubleshooting (\"Messages Being Filtered or Blocked?\"\n  diagnostic checklist), MMS media support (US\u002FCA\u002FAU only), and SMS pumping\n  indicators. For sending SMS, use twilio-send-message instead. Use this\n  skill only when debugging SMS delivery issues or needing SMS-specific\n  details not in the consolidated send skill.\n---\n\n## Overview\n\n**SMS is one channel in Twilio's Messaging platform.** All channels — SMS, WhatsApp, RCS, Facebook Messenger — share the same `messages.create()` API. See `twilio-messaging-overview` for the full channel comparison and onboarding sequence.\n\n| When to use SMS | When to consider alternatives |\n|----------------|------------------------------|\n| Reach any phone number globally | Need rich media outside US\u002FCA\u002FAU → WhatsApp |\n| No app install required | Opted-in audience prefers chat apps → WhatsApp |\n| Time-sensitive alerts (OTP, outage) | Marketing campaigns → `twilio-marketing-promotions-advisor` |\n| Regulatory\u002Fcompliance requires SMS | Cost-sensitive high-volume → WhatsApp (lower per-msg cost in many markets) |\n\n**For production SMS:** Use a Messaging Service (`messagingServiceSid`) instead of a raw `from` number. It enables sender pool management, compliance toolkit, SMS pumping protection, link shortening, and message scheduling. See `twilio-messaging-services`.\n\nEvery outbound SMS requires a `from` Twilio number (or `messagingServiceSid`) and a `to` recipient — both in E.164 format.\n\n---\n\n## Prerequisites\n\n- Twilio account with an SMS-capable phone number\n  — New to Twilio? See `twilio-account-setup` for signup, getting a number, and trial limitations\n- Environment variables:\n  - `TWILIO_ACCOUNT_SID`\n  - `TWILIO_AUTH_TOKEN`\n  — See `twilio-iam-auth-setup` for credential setup and best practices\n- SDK: `pip install twilio` \u002F `npm install twilio`\n\n---\n\n## Quickstart\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\nmessage = client.messages.create(\n    from_=\"+15017122661\",   # Your Twilio number (E.164)\n    to=\"+15558675310\",      # Recipient (E.164)\n    body=\"Your appointment is confirmed for tomorrow at 2pm.\"\n)\n\nprint(message.sid)     # SMxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nprint(message.status)  # queued | sent | delivered | failed\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\nconst message = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your appointment is confirmed for tomorrow at 2pm.\",\n});\n\nconsole.log(message.sid);\nconsole.log(message.status);\n```\n\n---\n\n## Key Patterns\n\n### Send MMS (with media)\n\n**Python**\n```python\nmessage = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Here is your invoice.\",\n    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n)\n```\n\n**Node.js**\n```node\nconst message = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Here is your invoice.\",\n    mediaUrl: [\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"],\n});\n```\n\nSupported media types: images (JPEG, PNG, GIF), PDF, audio, video. Max 5 MB per message.\n\n### Send via Messaging Service (recommended for scale)\n\nUse `messagingServiceSid` instead of `from` — Twilio picks the best sender automatically from your pool.\n\n**Python**\n```python\nmessage = client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    body=\"Your order has shipped.\"\n)\n```\n\n**Node.js**\n```node\nconst message = await client.messages.create({\n    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to: \"+15558675310\",\n    body: \"Your order has shipped.\",\n});\n```\n\n### Track Delivery Status\n\n**Python**\n```python\nmessage = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Hello!\",\n    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fsms-status\"\n)\n```\n\n**Node.js**\n```node\nconst message = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Hello!\",\n    statusCallback: \"https:\u002F\u002Fyourapp.com\u002Fsms-status\",\n});\n```\n\nTwilio POSTs to your URL at each transition: `queued → sent → delivered` (or `failed`\u002F`undelivered`).\n\n---\n\n## Response Fields\n\n| Field | Description |\n|-------|-------------|\n| `sid` | Message identifier (`SM...`) |\n| `status` | `queued`, `sent`, `delivered`, `undelivered`, `failed` |\n| `error_code` | Populated on failure |\n| `error_message` | Human-readable description |\n| `price` | Cost (populated after delivery) |\n| `date_sent` | UTC timestamp |\n\n---\n\n## Common Errors\n\n| Code | Meaning | Fix |\n|------|---------|-----|\n| 21211 | Invalid `to` number | Validate E.164 format |\n| 21408 | Permission to send to region not enabled | Enable geo-permissions in Console |\n| 21610 | Number is on blocklist (opted out) | Do not retry; respect opt-out |\n| 30003 | Unreachable destination | Carrier cannot deliver; try later |\n| 30007 | Message filtered as spam | Review content and sender reputation |\n| 30034 | Message from unregistered number | Complete A2P 10DLC registration — see `twilio-compliance-onboarding` |\n| 30450 | SMS pumping detected | Message blocked by SMS pumping protection — see `twilio-messaging-services` |\n\n### Messages Being Filtered or Blocked?\n\nIf your messages aren't being delivered, check these causes in order:\n\n1. **Unregistered sender (error 30034)** — US 10DLC numbers must be registered. See `twilio-compliance-onboarding`\n2. **Spam filtered (error 30007)** — Carrier flagged content. Check: opt-out language included? URL shorteners avoided? Content matches registered campaign?\n3. **Opted-out recipient (error 21610)** — Recipient sent STOP. Do not retry. See `twilio-compliance-traffic`\n4. **Geo-permissions disabled (error 21408)** — Enable the destination country in Console > Messaging > Settings > Geo Permissions. See `twilio-security-hardening`\n5. **SMS pumping (error 30450)** — Artificial traffic detected. Whitelist known prefixes via Global Safe List. See `twilio-messaging-services`\n6. **Account suspended** — Check Console for account status notifications. See `twilio-account-setup`\n\nFor delivery event tracking, set up StatusCallbacks or use `twilio-debugging-observability`.\n\n---\n\n## CANNOT\n\n- **Cannot send without E.164 format** — Both `from` and `to` must be `+` followed by country code and number\n- **Cannot send to unverified numbers on trial accounts** — Upgrade to paid or verify recipient numbers first\n- **Cannot send MMS outside US, Canada, and Australia** — MMS is only supported on US\u002FCA\u002FAU numbers; for international rich media use WhatsApp\n- **Cannot exceed 1,600 characters per message** — Longer messages are automatically split into segments (each billed separately)\n- **Cannot prevent SMS pumping without a Messaging Service** — Enable SMS pumping protection via Messaging Services to prevent artificial traffic inflation. See `twilio-messaging-services`\n\n---\n\n## Next Steps\n\n- **Channel overview and onboarding guide:** `twilio-messaging-overview`\n- **Receive inbound SMS and delivery status:** `twilio-messaging-webhooks`\n- **Manage sender pools at scale:** `twilio-messaging-services`\n- **US compliance for A2P traffic:** `twilio-compliance-onboarding`\n- **Send via WhatsApp instead:** `twilio-whatsapp-send-message`\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,82,168,202,229,233,239,312,315,321,329,458,466,561,564,570,577,584,637,644,695,700,706,725,732,776,783,827,833,840,891,898,949,978,981,987,1150,1153,1159,1330,1336,1341,1432,1444,1447,1453,1533,1536,1542,1618],{"type":45,"tag":46,"props":47,"children":49},"element","h2",{"id":48},"overview",[50],{"type":51,"value":52},"text","Overview",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,63,65,72,74,80],{"type":45,"tag":58,"props":59,"children":60},"strong",{},[61],{"type":51,"value":62},"SMS is one channel in Twilio's Messaging platform.",{"type":51,"value":64}," All channels — SMS, WhatsApp, RCS, Facebook Messenger — share the same ",{"type":45,"tag":66,"props":67,"children":69},"code",{"className":68},[],[70],{"type":51,"value":71},"messages.create()",{"type":51,"value":73}," API. See ",{"type":45,"tag":66,"props":75,"children":77},{"className":76},[],[78],{"type":51,"value":79},"twilio-messaging-overview",{"type":51,"value":81}," for the full channel comparison and onboarding sequence.",{"type":45,"tag":83,"props":84,"children":85},"table",{},[86,105],{"type":45,"tag":87,"props":88,"children":89},"thead",{},[90],{"type":45,"tag":91,"props":92,"children":93},"tr",{},[94,100],{"type":45,"tag":95,"props":96,"children":97},"th",{},[98],{"type":51,"value":99},"When to use SMS",{"type":45,"tag":95,"props":101,"children":102},{},[103],{"type":51,"value":104},"When to consider alternatives",{"type":45,"tag":106,"props":107,"children":108},"tbody",{},[109,123,136,155],{"type":45,"tag":91,"props":110,"children":111},{},[112,118],{"type":45,"tag":113,"props":114,"children":115},"td",{},[116],{"type":51,"value":117},"Reach any phone number globally",{"type":45,"tag":113,"props":119,"children":120},{},[121],{"type":51,"value":122},"Need rich media outside US\u002FCA\u002FAU → WhatsApp",{"type":45,"tag":91,"props":124,"children":125},{},[126,131],{"type":45,"tag":113,"props":127,"children":128},{},[129],{"type":51,"value":130},"No app install required",{"type":45,"tag":113,"props":132,"children":133},{},[134],{"type":51,"value":135},"Opted-in audience prefers chat apps → WhatsApp",{"type":45,"tag":91,"props":137,"children":138},{},[139,144],{"type":45,"tag":113,"props":140,"children":141},{},[142],{"type":51,"value":143},"Time-sensitive alerts (OTP, outage)",{"type":45,"tag":113,"props":145,"children":146},{},[147,149],{"type":51,"value":148},"Marketing campaigns → ",{"type":45,"tag":66,"props":150,"children":152},{"className":151},[],[153],{"type":51,"value":154},"twilio-marketing-promotions-advisor",{"type":45,"tag":91,"props":156,"children":157},{},[158,163],{"type":45,"tag":113,"props":159,"children":160},{},[161],{"type":51,"value":162},"Regulatory\u002Fcompliance requires SMS",{"type":45,"tag":113,"props":164,"children":165},{},[166],{"type":51,"value":167},"Cost-sensitive high-volume → WhatsApp (lower per-msg cost in many markets)",{"type":45,"tag":54,"props":169,"children":170},{},[171,176,178,184,186,192,194,200],{"type":45,"tag":58,"props":172,"children":173},{},[174],{"type":51,"value":175},"For production SMS:",{"type":51,"value":177}," Use a Messaging Service (",{"type":45,"tag":66,"props":179,"children":181},{"className":180},[],[182],{"type":51,"value":183},"messagingServiceSid",{"type":51,"value":185},") instead of a raw ",{"type":45,"tag":66,"props":187,"children":189},{"className":188},[],[190],{"type":51,"value":191},"from",{"type":51,"value":193}," number. It enables sender pool management, compliance toolkit, SMS pumping protection, link shortening, and message scheduling. See ",{"type":45,"tag":66,"props":195,"children":197},{"className":196},[],[198],{"type":51,"value":199},"twilio-messaging-services",{"type":51,"value":201},".",{"type":45,"tag":54,"props":203,"children":204},{},[205,207,212,214,219,221,227],{"type":51,"value":206},"Every outbound SMS requires a ",{"type":45,"tag":66,"props":208,"children":210},{"className":209},[],[211],{"type":51,"value":191},{"type":51,"value":213}," Twilio number (or ",{"type":45,"tag":66,"props":215,"children":217},{"className":216},[],[218],{"type":51,"value":183},{"type":51,"value":220},") and a ",{"type":45,"tag":66,"props":222,"children":224},{"className":223},[],[225],{"type":51,"value":226},"to",{"type":51,"value":228}," recipient — both in E.164 format.",{"type":45,"tag":230,"props":231,"children":232},"hr",{},[],{"type":45,"tag":46,"props":234,"children":236},{"id":235},"prerequisites",[237],{"type":51,"value":238},"Prerequisites",{"type":45,"tag":240,"props":241,"children":242},"ul",{},[243,257,293],{"type":45,"tag":244,"props":245,"children":246},"li",{},[247,249,255],{"type":51,"value":248},"Twilio account with an SMS-capable phone number\n— New to Twilio? See ",{"type":45,"tag":66,"props":250,"children":252},{"className":251},[],[253],{"type":51,"value":254},"twilio-account-setup",{"type":51,"value":256}," for signup, getting a number, and trial limitations",{"type":45,"tag":244,"props":258,"children":259},{},[260,262],{"type":51,"value":261},"Environment variables:\n",{"type":45,"tag":240,"props":263,"children":264},{},[265,274],{"type":45,"tag":244,"props":266,"children":267},{},[268],{"type":45,"tag":66,"props":269,"children":271},{"className":270},[],[272],{"type":51,"value":273},"TWILIO_ACCOUNT_SID",{"type":45,"tag":244,"props":275,"children":276},{},[277,283,285,291],{"type":45,"tag":66,"props":278,"children":280},{"className":279},[],[281],{"type":51,"value":282},"TWILIO_AUTH_TOKEN",{"type":51,"value":284},"\n— See ",{"type":45,"tag":66,"props":286,"children":288},{"className":287},[],[289],{"type":51,"value":290},"twilio-iam-auth-setup",{"type":51,"value":292}," for credential setup and best practices",{"type":45,"tag":244,"props":294,"children":295},{},[296,298,304,306],{"type":51,"value":297},"SDK: ",{"type":45,"tag":66,"props":299,"children":301},{"className":300},[],[302],{"type":51,"value":303},"pip install twilio",{"type":51,"value":305}," \u002F ",{"type":45,"tag":66,"props":307,"children":309},{"className":308},[],[310],{"type":51,"value":311},"npm install twilio",{"type":45,"tag":230,"props":313,"children":314},{},[],{"type":45,"tag":46,"props":316,"children":318},{"id":317},"quickstart",[319],{"type":51,"value":320},"Quickstart",{"type":45,"tag":54,"props":322,"children":323},{},[324],{"type":45,"tag":58,"props":325,"children":326},{},[327],{"type":51,"value":328},"Python",{"type":45,"tag":330,"props":331,"children":336},"pre",{"className":332,"code":333,"language":334,"meta":335,"style":335},"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\"])\n\nmessage = client.messages.create(\n    from_=\"+15017122661\",   # Your Twilio number (E.164)\n    to=\"+15558675310\",      # Recipient (E.164)\n    body=\"Your appointment is confirmed for tomorrow at 2pm.\"\n)\n\nprint(message.sid)     # SMxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nprint(message.status)  # queued | sent | delivered | failed\n","python","",[337],{"type":45,"tag":66,"props":338,"children":339},{"__ignoreMap":335},[340,351,360,370,379,387,396,405,414,423,432,440,449],{"type":45,"tag":341,"props":342,"children":345},"span",{"class":343,"line":344},"line",1,[346],{"type":45,"tag":341,"props":347,"children":348},{},[349],{"type":51,"value":350},"import os\n",{"type":45,"tag":341,"props":352,"children":354},{"class":343,"line":353},2,[355],{"type":45,"tag":341,"props":356,"children":357},{},[358],{"type":51,"value":359},"from twilio.rest import Client\n",{"type":45,"tag":341,"props":361,"children":363},{"class":343,"line":362},3,[364],{"type":45,"tag":341,"props":365,"children":367},{"emptyLinePlaceholder":366},true,[368],{"type":51,"value":369},"\n",{"type":45,"tag":341,"props":371,"children":373},{"class":343,"line":372},4,[374],{"type":45,"tag":341,"props":375,"children":376},{},[377],{"type":51,"value":378},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":45,"tag":341,"props":380,"children":382},{"class":343,"line":381},5,[383],{"type":45,"tag":341,"props":384,"children":385},{"emptyLinePlaceholder":366},[386],{"type":51,"value":369},{"type":45,"tag":341,"props":388,"children":390},{"class":343,"line":389},6,[391],{"type":45,"tag":341,"props":392,"children":393},{},[394],{"type":51,"value":395},"message = client.messages.create(\n",{"type":45,"tag":341,"props":397,"children":399},{"class":343,"line":398},7,[400],{"type":45,"tag":341,"props":401,"children":402},{},[403],{"type":51,"value":404},"    from_=\"+15017122661\",   # Your Twilio number (E.164)\n",{"type":45,"tag":341,"props":406,"children":408},{"class":343,"line":407},8,[409],{"type":45,"tag":341,"props":410,"children":411},{},[412],{"type":51,"value":413},"    to=\"+15558675310\",      # Recipient (E.164)\n",{"type":45,"tag":341,"props":415,"children":417},{"class":343,"line":416},9,[418],{"type":45,"tag":341,"props":419,"children":420},{},[421],{"type":51,"value":422},"    body=\"Your appointment is confirmed for tomorrow at 2pm.\"\n",{"type":45,"tag":341,"props":424,"children":426},{"class":343,"line":425},10,[427],{"type":45,"tag":341,"props":428,"children":429},{},[430],{"type":51,"value":431},")\n",{"type":45,"tag":341,"props":433,"children":435},{"class":343,"line":434},11,[436],{"type":45,"tag":341,"props":437,"children":438},{"emptyLinePlaceholder":366},[439],{"type":51,"value":369},{"type":45,"tag":341,"props":441,"children":443},{"class":343,"line":442},12,[444],{"type":45,"tag":341,"props":445,"children":446},{},[447],{"type":51,"value":448},"print(message.sid)     # SMxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",{"type":45,"tag":341,"props":450,"children":452},{"class":343,"line":451},13,[453],{"type":45,"tag":341,"props":454,"children":455},{},[456],{"type":51,"value":457},"print(message.status)  # queued | sent | delivered | failed\n",{"type":45,"tag":54,"props":459,"children":460},{},[461],{"type":45,"tag":58,"props":462,"children":463},{},[464],{"type":51,"value":465},"Node.js",{"type":45,"tag":330,"props":467,"children":471},{"className":468,"code":469,"language":470,"meta":335,"style":335},"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    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your appointment is confirmed for tomorrow at 2pm.\",\n});\n\nconsole.log(message.sid);\nconsole.log(message.status);\n","node",[472],{"type":45,"tag":66,"props":473,"children":474},{"__ignoreMap":335},[475,483,491,498,506,514,522,530,538,545,553],{"type":45,"tag":341,"props":476,"children":477},{"class":343,"line":344},[478],{"type":45,"tag":341,"props":479,"children":480},{},[481],{"type":51,"value":482},"const twilio = require(\"twilio\");\n",{"type":45,"tag":341,"props":484,"children":485},{"class":343,"line":353},[486],{"type":45,"tag":341,"props":487,"children":488},{},[489],{"type":51,"value":490},"const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",{"type":45,"tag":341,"props":492,"children":493},{"class":343,"line":362},[494],{"type":45,"tag":341,"props":495,"children":496},{"emptyLinePlaceholder":366},[497],{"type":51,"value":369},{"type":45,"tag":341,"props":499,"children":500},{"class":343,"line":372},[501],{"type":45,"tag":341,"props":502,"children":503},{},[504],{"type":51,"value":505},"const message = await client.messages.create({\n",{"type":45,"tag":341,"props":507,"children":508},{"class":343,"line":381},[509],{"type":45,"tag":341,"props":510,"children":511},{},[512],{"type":51,"value":513},"    from: \"+15017122661\",\n",{"type":45,"tag":341,"props":515,"children":516},{"class":343,"line":389},[517],{"type":45,"tag":341,"props":518,"children":519},{},[520],{"type":51,"value":521},"    to: \"+15558675310\",\n",{"type":45,"tag":341,"props":523,"children":524},{"class":343,"line":398},[525],{"type":45,"tag":341,"props":526,"children":527},{},[528],{"type":51,"value":529},"    body: \"Your appointment is confirmed for tomorrow at 2pm.\",\n",{"type":45,"tag":341,"props":531,"children":532},{"class":343,"line":407},[533],{"type":45,"tag":341,"props":534,"children":535},{},[536],{"type":51,"value":537},"});\n",{"type":45,"tag":341,"props":539,"children":540},{"class":343,"line":416},[541],{"type":45,"tag":341,"props":542,"children":543},{"emptyLinePlaceholder":366},[544],{"type":51,"value":369},{"type":45,"tag":341,"props":546,"children":547},{"class":343,"line":425},[548],{"type":45,"tag":341,"props":549,"children":550},{},[551],{"type":51,"value":552},"console.log(message.sid);\n",{"type":45,"tag":341,"props":554,"children":555},{"class":343,"line":434},[556],{"type":45,"tag":341,"props":557,"children":558},{},[559],{"type":51,"value":560},"console.log(message.status);\n",{"type":45,"tag":230,"props":562,"children":563},{},[],{"type":45,"tag":46,"props":565,"children":567},{"id":566},"key-patterns",[568],{"type":51,"value":569},"Key Patterns",{"type":45,"tag":571,"props":572,"children":574},"h3",{"id":573},"send-mms-with-media",[575],{"type":51,"value":576},"Send MMS (with media)",{"type":45,"tag":54,"props":578,"children":579},{},[580],{"type":45,"tag":58,"props":581,"children":582},{},[583],{"type":51,"value":328},{"type":45,"tag":330,"props":585,"children":587},{"className":332,"code":586,"language":334,"meta":335,"style":335},"message = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Here is your invoice.\",\n    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n)\n",[588],{"type":45,"tag":66,"props":589,"children":590},{"__ignoreMap":335},[591,598,606,614,622,630],{"type":45,"tag":341,"props":592,"children":593},{"class":343,"line":344},[594],{"type":45,"tag":341,"props":595,"children":596},{},[597],{"type":51,"value":395},{"type":45,"tag":341,"props":599,"children":600},{"class":343,"line":353},[601],{"type":45,"tag":341,"props":602,"children":603},{},[604],{"type":51,"value":605},"    from_=\"+15017122661\",\n",{"type":45,"tag":341,"props":607,"children":608},{"class":343,"line":362},[609],{"type":45,"tag":341,"props":610,"children":611},{},[612],{"type":51,"value":613},"    to=\"+15558675310\",\n",{"type":45,"tag":341,"props":615,"children":616},{"class":343,"line":372},[617],{"type":45,"tag":341,"props":618,"children":619},{},[620],{"type":51,"value":621},"    body=\"Here is your invoice.\",\n",{"type":45,"tag":341,"props":623,"children":624},{"class":343,"line":381},[625],{"type":45,"tag":341,"props":626,"children":627},{},[628],{"type":51,"value":629},"    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n",{"type":45,"tag":341,"props":631,"children":632},{"class":343,"line":389},[633],{"type":45,"tag":341,"props":634,"children":635},{},[636],{"type":51,"value":431},{"type":45,"tag":54,"props":638,"children":639},{},[640],{"type":45,"tag":58,"props":641,"children":642},{},[643],{"type":51,"value":465},{"type":45,"tag":330,"props":645,"children":647},{"className":468,"code":646,"language":470,"meta":335,"style":335},"const message = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Here is your invoice.\",\n    mediaUrl: [\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"],\n});\n",[648],{"type":45,"tag":66,"props":649,"children":650},{"__ignoreMap":335},[651,658,665,672,680,688],{"type":45,"tag":341,"props":652,"children":653},{"class":343,"line":344},[654],{"type":45,"tag":341,"props":655,"children":656},{},[657],{"type":51,"value":505},{"type":45,"tag":341,"props":659,"children":660},{"class":343,"line":353},[661],{"type":45,"tag":341,"props":662,"children":663},{},[664],{"type":51,"value":513},{"type":45,"tag":341,"props":666,"children":667},{"class":343,"line":362},[668],{"type":45,"tag":341,"props":669,"children":670},{},[671],{"type":51,"value":521},{"type":45,"tag":341,"props":673,"children":674},{"class":343,"line":372},[675],{"type":45,"tag":341,"props":676,"children":677},{},[678],{"type":51,"value":679},"    body: \"Here is your invoice.\",\n",{"type":45,"tag":341,"props":681,"children":682},{"class":343,"line":381},[683],{"type":45,"tag":341,"props":684,"children":685},{},[686],{"type":51,"value":687},"    mediaUrl: [\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"],\n",{"type":45,"tag":341,"props":689,"children":690},{"class":343,"line":389},[691],{"type":45,"tag":341,"props":692,"children":693},{},[694],{"type":51,"value":537},{"type":45,"tag":54,"props":696,"children":697},{},[698],{"type":51,"value":699},"Supported media types: images (JPEG, PNG, GIF), PDF, audio, video. Max 5 MB per message.",{"type":45,"tag":571,"props":701,"children":703},{"id":702},"send-via-messaging-service-recommended-for-scale",[704],{"type":51,"value":705},"Send via Messaging Service (recommended for scale)",{"type":45,"tag":54,"props":707,"children":708},{},[709,711,716,718,723],{"type":51,"value":710},"Use ",{"type":45,"tag":66,"props":712,"children":714},{"className":713},[],[715],{"type":51,"value":183},{"type":51,"value":717}," instead of ",{"type":45,"tag":66,"props":719,"children":721},{"className":720},[],[722],{"type":51,"value":191},{"type":51,"value":724}," — Twilio picks the best sender automatically from your pool.",{"type":45,"tag":54,"props":726,"children":727},{},[728],{"type":45,"tag":58,"props":729,"children":730},{},[731],{"type":51,"value":328},{"type":45,"tag":330,"props":733,"children":735},{"className":332,"code":734,"language":334,"meta":335,"style":335},"message = client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    body=\"Your order has shipped.\"\n)\n",[736],{"type":45,"tag":66,"props":737,"children":738},{"__ignoreMap":335},[739,746,754,761,769],{"type":45,"tag":341,"props":740,"children":741},{"class":343,"line":344},[742],{"type":45,"tag":341,"props":743,"children":744},{},[745],{"type":51,"value":395},{"type":45,"tag":341,"props":747,"children":748},{"class":343,"line":353},[749],{"type":45,"tag":341,"props":750,"children":751},{},[752],{"type":51,"value":753},"    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":45,"tag":341,"props":755,"children":756},{"class":343,"line":362},[757],{"type":45,"tag":341,"props":758,"children":759},{},[760],{"type":51,"value":613},{"type":45,"tag":341,"props":762,"children":763},{"class":343,"line":372},[764],{"type":45,"tag":341,"props":765,"children":766},{},[767],{"type":51,"value":768},"    body=\"Your order has shipped.\"\n",{"type":45,"tag":341,"props":770,"children":771},{"class":343,"line":381},[772],{"type":45,"tag":341,"props":773,"children":774},{},[775],{"type":51,"value":431},{"type":45,"tag":54,"props":777,"children":778},{},[779],{"type":45,"tag":58,"props":780,"children":781},{},[782],{"type":51,"value":465},{"type":45,"tag":330,"props":784,"children":786},{"className":468,"code":785,"language":470,"meta":335,"style":335},"const message = await client.messages.create({\n    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to: \"+15558675310\",\n    body: \"Your order has shipped.\",\n});\n",[787],{"type":45,"tag":66,"props":788,"children":789},{"__ignoreMap":335},[790,797,805,812,820],{"type":45,"tag":341,"props":791,"children":792},{"class":343,"line":344},[793],{"type":45,"tag":341,"props":794,"children":795},{},[796],{"type":51,"value":505},{"type":45,"tag":341,"props":798,"children":799},{"class":343,"line":353},[800],{"type":45,"tag":341,"props":801,"children":802},{},[803],{"type":51,"value":804},"    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":45,"tag":341,"props":806,"children":807},{"class":343,"line":362},[808],{"type":45,"tag":341,"props":809,"children":810},{},[811],{"type":51,"value":521},{"type":45,"tag":341,"props":813,"children":814},{"class":343,"line":372},[815],{"type":45,"tag":341,"props":816,"children":817},{},[818],{"type":51,"value":819},"    body: \"Your order has shipped.\",\n",{"type":45,"tag":341,"props":821,"children":822},{"class":343,"line":381},[823],{"type":45,"tag":341,"props":824,"children":825},{},[826],{"type":51,"value":537},{"type":45,"tag":571,"props":828,"children":830},{"id":829},"track-delivery-status",[831],{"type":51,"value":832},"Track Delivery Status",{"type":45,"tag":54,"props":834,"children":835},{},[836],{"type":45,"tag":58,"props":837,"children":838},{},[839],{"type":51,"value":328},{"type":45,"tag":330,"props":841,"children":843},{"className":332,"code":842,"language":334,"meta":335,"style":335},"message = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Hello!\",\n    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fsms-status\"\n)\n",[844],{"type":45,"tag":66,"props":845,"children":846},{"__ignoreMap":335},[847,854,861,868,876,884],{"type":45,"tag":341,"props":848,"children":849},{"class":343,"line":344},[850],{"type":45,"tag":341,"props":851,"children":852},{},[853],{"type":51,"value":395},{"type":45,"tag":341,"props":855,"children":856},{"class":343,"line":353},[857],{"type":45,"tag":341,"props":858,"children":859},{},[860],{"type":51,"value":605},{"type":45,"tag":341,"props":862,"children":863},{"class":343,"line":362},[864],{"type":45,"tag":341,"props":865,"children":866},{},[867],{"type":51,"value":613},{"type":45,"tag":341,"props":869,"children":870},{"class":343,"line":372},[871],{"type":45,"tag":341,"props":872,"children":873},{},[874],{"type":51,"value":875},"    body=\"Hello!\",\n",{"type":45,"tag":341,"props":877,"children":878},{"class":343,"line":381},[879],{"type":45,"tag":341,"props":880,"children":881},{},[882],{"type":51,"value":883},"    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fsms-status\"\n",{"type":45,"tag":341,"props":885,"children":886},{"class":343,"line":389},[887],{"type":45,"tag":341,"props":888,"children":889},{},[890],{"type":51,"value":431},{"type":45,"tag":54,"props":892,"children":893},{},[894],{"type":45,"tag":58,"props":895,"children":896},{},[897],{"type":51,"value":465},{"type":45,"tag":330,"props":899,"children":901},{"className":468,"code":900,"language":470,"meta":335,"style":335},"const message = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Hello!\",\n    statusCallback: \"https:\u002F\u002Fyourapp.com\u002Fsms-status\",\n});\n",[902],{"type":45,"tag":66,"props":903,"children":904},{"__ignoreMap":335},[905,912,919,926,934,942],{"type":45,"tag":341,"props":906,"children":907},{"class":343,"line":344},[908],{"type":45,"tag":341,"props":909,"children":910},{},[911],{"type":51,"value":505},{"type":45,"tag":341,"props":913,"children":914},{"class":343,"line":353},[915],{"type":45,"tag":341,"props":916,"children":917},{},[918],{"type":51,"value":513},{"type":45,"tag":341,"props":920,"children":921},{"class":343,"line":362},[922],{"type":45,"tag":341,"props":923,"children":924},{},[925],{"type":51,"value":521},{"type":45,"tag":341,"props":927,"children":928},{"class":343,"line":372},[929],{"type":45,"tag":341,"props":930,"children":931},{},[932],{"type":51,"value":933},"    body: \"Hello!\",\n",{"type":45,"tag":341,"props":935,"children":936},{"class":343,"line":381},[937],{"type":45,"tag":341,"props":938,"children":939},{},[940],{"type":51,"value":941},"    statusCallback: \"https:\u002F\u002Fyourapp.com\u002Fsms-status\",\n",{"type":45,"tag":341,"props":943,"children":944},{"class":343,"line":389},[945],{"type":45,"tag":341,"props":946,"children":947},{},[948],{"type":51,"value":537},{"type":45,"tag":54,"props":950,"children":951},{},[952,954,960,962,968,970,976],{"type":51,"value":953},"Twilio POSTs to your URL at each transition: ",{"type":45,"tag":66,"props":955,"children":957},{"className":956},[],[958],{"type":51,"value":959},"queued → sent → delivered",{"type":51,"value":961}," (or ",{"type":45,"tag":66,"props":963,"children":965},{"className":964},[],[966],{"type":51,"value":967},"failed",{"type":51,"value":969},"\u002F",{"type":45,"tag":66,"props":971,"children":973},{"className":972},[],[974],{"type":51,"value":975},"undelivered",{"type":51,"value":977},").",{"type":45,"tag":230,"props":979,"children":980},{},[],{"type":45,"tag":46,"props":982,"children":984},{"id":983},"response-fields",[985],{"type":51,"value":986},"Response Fields",{"type":45,"tag":83,"props":988,"children":989},{},[990,1006],{"type":45,"tag":87,"props":991,"children":992},{},[993],{"type":45,"tag":91,"props":994,"children":995},{},[996,1001],{"type":45,"tag":95,"props":997,"children":998},{},[999],{"type":51,"value":1000},"Field",{"type":45,"tag":95,"props":1002,"children":1003},{},[1004],{"type":51,"value":1005},"Description",{"type":45,"tag":106,"props":1007,"children":1008},{},[1009,1034,1082,1099,1116,1133],{"type":45,"tag":91,"props":1010,"children":1011},{},[1012,1021],{"type":45,"tag":113,"props":1013,"children":1014},{},[1015],{"type":45,"tag":66,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":51,"value":1020},"sid",{"type":45,"tag":113,"props":1022,"children":1023},{},[1024,1026,1032],{"type":51,"value":1025},"Message identifier (",{"type":45,"tag":66,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":51,"value":1031},"SM...",{"type":51,"value":1033},")",{"type":45,"tag":91,"props":1035,"children":1036},{},[1037,1046],{"type":45,"tag":113,"props":1038,"children":1039},{},[1040],{"type":45,"tag":66,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":51,"value":1045},"status",{"type":45,"tag":113,"props":1047,"children":1048},{},[1049,1055,1057,1063,1064,1070,1071,1076,1077],{"type":45,"tag":66,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":51,"value":1054},"queued",{"type":51,"value":1056},", ",{"type":45,"tag":66,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":51,"value":1062},"sent",{"type":51,"value":1056},{"type":45,"tag":66,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":51,"value":1069},"delivered",{"type":51,"value":1056},{"type":45,"tag":66,"props":1072,"children":1074},{"className":1073},[],[1075],{"type":51,"value":975},{"type":51,"value":1056},{"type":45,"tag":66,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":51,"value":967},{"type":45,"tag":91,"props":1083,"children":1084},{},[1085,1094],{"type":45,"tag":113,"props":1086,"children":1087},{},[1088],{"type":45,"tag":66,"props":1089,"children":1091},{"className":1090},[],[1092],{"type":51,"value":1093},"error_code",{"type":45,"tag":113,"props":1095,"children":1096},{},[1097],{"type":51,"value":1098},"Populated on failure",{"type":45,"tag":91,"props":1100,"children":1101},{},[1102,1111],{"type":45,"tag":113,"props":1103,"children":1104},{},[1105],{"type":45,"tag":66,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":51,"value":1110},"error_message",{"type":45,"tag":113,"props":1112,"children":1113},{},[1114],{"type":51,"value":1115},"Human-readable description",{"type":45,"tag":91,"props":1117,"children":1118},{},[1119,1128],{"type":45,"tag":113,"props":1120,"children":1121},{},[1122],{"type":45,"tag":66,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":51,"value":1127},"price",{"type":45,"tag":113,"props":1129,"children":1130},{},[1131],{"type":51,"value":1132},"Cost (populated after delivery)",{"type":45,"tag":91,"props":1134,"children":1135},{},[1136,1145],{"type":45,"tag":113,"props":1137,"children":1138},{},[1139],{"type":45,"tag":66,"props":1140,"children":1142},{"className":1141},[],[1143],{"type":51,"value":1144},"date_sent",{"type":45,"tag":113,"props":1146,"children":1147},{},[1148],{"type":51,"value":1149},"UTC timestamp",{"type":45,"tag":230,"props":1151,"children":1152},{},[],{"type":45,"tag":46,"props":1154,"children":1156},{"id":1155},"common-errors",[1157],{"type":51,"value":1158},"Common Errors",{"type":45,"tag":83,"props":1160,"children":1161},{},[1162,1183],{"type":45,"tag":87,"props":1163,"children":1164},{},[1165],{"type":45,"tag":91,"props":1166,"children":1167},{},[1168,1173,1178],{"type":45,"tag":95,"props":1169,"children":1170},{},[1171],{"type":51,"value":1172},"Code",{"type":45,"tag":95,"props":1174,"children":1175},{},[1176],{"type":51,"value":1177},"Meaning",{"type":45,"tag":95,"props":1179,"children":1180},{},[1181],{"type":51,"value":1182},"Fix",{"type":45,"tag":106,"props":1184,"children":1185},{},[1186,1211,1229,1247,1265,1283,1307],{"type":45,"tag":91,"props":1187,"children":1188},{},[1189,1194,1206],{"type":45,"tag":113,"props":1190,"children":1191},{},[1192],{"type":51,"value":1193},"21211",{"type":45,"tag":113,"props":1195,"children":1196},{},[1197,1199,1204],{"type":51,"value":1198},"Invalid ",{"type":45,"tag":66,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":51,"value":226},{"type":51,"value":1205}," number",{"type":45,"tag":113,"props":1207,"children":1208},{},[1209],{"type":51,"value":1210},"Validate E.164 format",{"type":45,"tag":91,"props":1212,"children":1213},{},[1214,1219,1224],{"type":45,"tag":113,"props":1215,"children":1216},{},[1217],{"type":51,"value":1218},"21408",{"type":45,"tag":113,"props":1220,"children":1221},{},[1222],{"type":51,"value":1223},"Permission to send to region not enabled",{"type":45,"tag":113,"props":1225,"children":1226},{},[1227],{"type":51,"value":1228},"Enable geo-permissions in Console",{"type":45,"tag":91,"props":1230,"children":1231},{},[1232,1237,1242],{"type":45,"tag":113,"props":1233,"children":1234},{},[1235],{"type":51,"value":1236},"21610",{"type":45,"tag":113,"props":1238,"children":1239},{},[1240],{"type":51,"value":1241},"Number is on blocklist (opted out)",{"type":45,"tag":113,"props":1243,"children":1244},{},[1245],{"type":51,"value":1246},"Do not retry; respect opt-out",{"type":45,"tag":91,"props":1248,"children":1249},{},[1250,1255,1260],{"type":45,"tag":113,"props":1251,"children":1252},{},[1253],{"type":51,"value":1254},"30003",{"type":45,"tag":113,"props":1256,"children":1257},{},[1258],{"type":51,"value":1259},"Unreachable destination",{"type":45,"tag":113,"props":1261,"children":1262},{},[1263],{"type":51,"value":1264},"Carrier cannot deliver; try later",{"type":45,"tag":91,"props":1266,"children":1267},{},[1268,1273,1278],{"type":45,"tag":113,"props":1269,"children":1270},{},[1271],{"type":51,"value":1272},"30007",{"type":45,"tag":113,"props":1274,"children":1275},{},[1276],{"type":51,"value":1277},"Message filtered as spam",{"type":45,"tag":113,"props":1279,"children":1280},{},[1281],{"type":51,"value":1282},"Review content and sender reputation",{"type":45,"tag":91,"props":1284,"children":1285},{},[1286,1291,1296],{"type":45,"tag":113,"props":1287,"children":1288},{},[1289],{"type":51,"value":1290},"30034",{"type":45,"tag":113,"props":1292,"children":1293},{},[1294],{"type":51,"value":1295},"Message from unregistered number",{"type":45,"tag":113,"props":1297,"children":1298},{},[1299,1301],{"type":51,"value":1300},"Complete A2P 10DLC registration — see ",{"type":45,"tag":66,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":51,"value":1306},"twilio-compliance-onboarding",{"type":45,"tag":91,"props":1308,"children":1309},{},[1310,1315,1320],{"type":45,"tag":113,"props":1311,"children":1312},{},[1313],{"type":51,"value":1314},"30450",{"type":45,"tag":113,"props":1316,"children":1317},{},[1318],{"type":51,"value":1319},"SMS pumping detected",{"type":45,"tag":113,"props":1321,"children":1322},{},[1323,1325],{"type":51,"value":1324},"Message blocked by SMS pumping protection — see ",{"type":45,"tag":66,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":51,"value":199},{"type":45,"tag":571,"props":1331,"children":1333},{"id":1332},"messages-being-filtered-or-blocked",[1334],{"type":51,"value":1335},"Messages Being Filtered or Blocked?",{"type":45,"tag":54,"props":1337,"children":1338},{},[1339],{"type":51,"value":1340},"If your messages aren't being delivered, check these causes in order:",{"type":45,"tag":1342,"props":1343,"children":1344},"ol",{},[1345,1360,1370,1386,1402,1417],{"type":45,"tag":244,"props":1346,"children":1347},{},[1348,1353,1355],{"type":45,"tag":58,"props":1349,"children":1350},{},[1351],{"type":51,"value":1352},"Unregistered sender (error 30034)",{"type":51,"value":1354}," — US 10DLC numbers must be registered. See ",{"type":45,"tag":66,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":51,"value":1306},{"type":45,"tag":244,"props":1361,"children":1362},{},[1363,1368],{"type":45,"tag":58,"props":1364,"children":1365},{},[1366],{"type":51,"value":1367},"Spam filtered (error 30007)",{"type":51,"value":1369}," — Carrier flagged content. Check: opt-out language included? URL shorteners avoided? Content matches registered campaign?",{"type":45,"tag":244,"props":1371,"children":1372},{},[1373,1378,1380],{"type":45,"tag":58,"props":1374,"children":1375},{},[1376],{"type":51,"value":1377},"Opted-out recipient (error 21610)",{"type":51,"value":1379}," — Recipient sent STOP. Do not retry. See ",{"type":45,"tag":66,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":51,"value":1385},"twilio-compliance-traffic",{"type":45,"tag":244,"props":1387,"children":1388},{},[1389,1394,1396],{"type":45,"tag":58,"props":1390,"children":1391},{},[1392],{"type":51,"value":1393},"Geo-permissions disabled (error 21408)",{"type":51,"value":1395}," — Enable the destination country in Console > Messaging > Settings > Geo Permissions. See ",{"type":45,"tag":66,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":51,"value":1401},"twilio-security-hardening",{"type":45,"tag":244,"props":1403,"children":1404},{},[1405,1410,1412],{"type":45,"tag":58,"props":1406,"children":1407},{},[1408],{"type":51,"value":1409},"SMS pumping (error 30450)",{"type":51,"value":1411}," — Artificial traffic detected. Whitelist known prefixes via Global Safe List. See ",{"type":45,"tag":66,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":51,"value":199},{"type":45,"tag":244,"props":1418,"children":1419},{},[1420,1425,1427],{"type":45,"tag":58,"props":1421,"children":1422},{},[1423],{"type":51,"value":1424},"Account suspended",{"type":51,"value":1426}," — Check Console for account status notifications. See ",{"type":45,"tag":66,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":51,"value":254},{"type":45,"tag":54,"props":1433,"children":1434},{},[1435,1437,1443],{"type":51,"value":1436},"For delivery event tracking, set up StatusCallbacks or use ",{"type":45,"tag":66,"props":1438,"children":1440},{"className":1439},[],[1441],{"type":51,"value":1442},"twilio-debugging-observability",{"type":51,"value":201},{"type":45,"tag":230,"props":1445,"children":1446},{},[],{"type":45,"tag":46,"props":1448,"children":1450},{"id":1449},"cannot",[1451],{"type":51,"value":1452},"CANNOT",{"type":45,"tag":240,"props":1454,"children":1455},{},[1456,1488,1498,1508,1518],{"type":45,"tag":244,"props":1457,"children":1458},{},[1459,1464,1466,1471,1473,1478,1480,1486],{"type":45,"tag":58,"props":1460,"children":1461},{},[1462],{"type":51,"value":1463},"Cannot send without E.164 format",{"type":51,"value":1465}," — Both ",{"type":45,"tag":66,"props":1467,"children":1469},{"className":1468},[],[1470],{"type":51,"value":191},{"type":51,"value":1472}," and ",{"type":45,"tag":66,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":51,"value":226},{"type":51,"value":1479}," must be ",{"type":45,"tag":66,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":51,"value":1485},"+",{"type":51,"value":1487}," followed by country code and number",{"type":45,"tag":244,"props":1489,"children":1490},{},[1491,1496],{"type":45,"tag":58,"props":1492,"children":1493},{},[1494],{"type":51,"value":1495},"Cannot send to unverified numbers on trial accounts",{"type":51,"value":1497}," — Upgrade to paid or verify recipient numbers first",{"type":45,"tag":244,"props":1499,"children":1500},{},[1501,1506],{"type":45,"tag":58,"props":1502,"children":1503},{},[1504],{"type":51,"value":1505},"Cannot send MMS outside US, Canada, and Australia",{"type":51,"value":1507}," — MMS is only supported on US\u002FCA\u002FAU numbers; for international rich media use WhatsApp",{"type":45,"tag":244,"props":1509,"children":1510},{},[1511,1516],{"type":45,"tag":58,"props":1512,"children":1513},{},[1514],{"type":51,"value":1515},"Cannot exceed 1,600 characters per message",{"type":51,"value":1517}," — Longer messages are automatically split into segments (each billed separately)",{"type":45,"tag":244,"props":1519,"children":1520},{},[1521,1526,1528],{"type":45,"tag":58,"props":1522,"children":1523},{},[1524],{"type":51,"value":1525},"Cannot prevent SMS pumping without a Messaging Service",{"type":51,"value":1527}," — Enable SMS pumping protection via Messaging Services to prevent artificial traffic inflation. See ",{"type":45,"tag":66,"props":1529,"children":1531},{"className":1530},[],[1532],{"type":51,"value":199},{"type":45,"tag":230,"props":1534,"children":1535},{},[],{"type":45,"tag":46,"props":1537,"children":1539},{"id":1538},"next-steps",[1540],{"type":51,"value":1541},"Next Steps",{"type":45,"tag":240,"props":1543,"children":1544},{},[1545,1560,1575,1589,1603],{"type":45,"tag":244,"props":1546,"children":1547},{},[1548,1553,1555],{"type":45,"tag":58,"props":1549,"children":1550},{},[1551],{"type":51,"value":1552},"Channel overview and onboarding guide:",{"type":51,"value":1554}," ",{"type":45,"tag":66,"props":1556,"children":1558},{"className":1557},[],[1559],{"type":51,"value":79},{"type":45,"tag":244,"props":1561,"children":1562},{},[1563,1568,1569],{"type":45,"tag":58,"props":1564,"children":1565},{},[1566],{"type":51,"value":1567},"Receive inbound SMS and delivery status:",{"type":51,"value":1554},{"type":45,"tag":66,"props":1570,"children":1572},{"className":1571},[],[1573],{"type":51,"value":1574},"twilio-messaging-webhooks",{"type":45,"tag":244,"props":1576,"children":1577},{},[1578,1583,1584],{"type":45,"tag":58,"props":1579,"children":1580},{},[1581],{"type":51,"value":1582},"Manage sender pools at scale:",{"type":51,"value":1554},{"type":45,"tag":66,"props":1585,"children":1587},{"className":1586},[],[1588],{"type":51,"value":199},{"type":45,"tag":244,"props":1590,"children":1591},{},[1592,1597,1598],{"type":45,"tag":58,"props":1593,"children":1594},{},[1595],{"type":51,"value":1596},"US compliance for A2P traffic:",{"type":51,"value":1554},{"type":45,"tag":66,"props":1599,"children":1601},{"className":1600},[],[1602],{"type":51,"value":1306},{"type":45,"tag":244,"props":1604,"children":1605},{},[1606,1611,1612],{"type":45,"tag":58,"props":1607,"children":1608},{},[1609],{"type":51,"value":1610},"Send via WhatsApp instead:",{"type":51,"value":1554},{"type":45,"tag":66,"props":1613,"children":1615},{"className":1614},[],[1616],{"type":51,"value":1617},"twilio-whatsapp-send-message",{"type":45,"tag":1619,"props":1620,"children":1621},"style",{},[1622],{"type":51,"value":1623},"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":1625,"total":1830},[1626,1647,1670,1687,1703,1722,1741,1757,1773,1787,1799,1814],{"slug":1627,"name":1627,"fn":1628,"description":1629,"org":1630,"tags":1631,"stars":1644,"repoUrl":1645,"updatedAt":1646},"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},[1632,1635,1638,1641],{"name":1633,"slug":1634,"type":15},"Documents","documents",{"name":1636,"slug":1637,"type":15},"Healthcare","healthcare",{"name":1639,"slug":1640,"type":15},"Insurance","insurance",{"name":1642,"slug":1643,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1648,"name":1648,"fn":1649,"description":1650,"org":1651,"tags":1652,"stars":1667,"repoUrl":1668,"updatedAt":1669},"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},[1653,1656,1658,1661,1664],{"name":1654,"slug":1655,"type":15},".NET","dotnet",{"name":1657,"slug":1648,"type":15},"ASP.NET Core",{"name":1659,"slug":1660,"type":15},"Blazor","blazor",{"name":1662,"slug":1663,"type":15},"C#","csharp",{"name":1665,"slug":1666,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1671,"name":1671,"fn":1672,"description":1673,"org":1674,"tags":1675,"stars":1667,"repoUrl":1668,"updatedAt":1686},"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},[1676,1679,1682,1685],{"name":1677,"slug":1678,"type":15},"Apps SDK","apps-sdk",{"name":1680,"slug":1681,"type":15},"ChatGPT","chatgpt",{"name":1683,"slug":1684,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1688,"name":1688,"fn":1689,"description":1690,"org":1691,"tags":1692,"stars":1667,"repoUrl":1668,"updatedAt":1702},"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},[1693,1696,1699],{"name":1694,"slug":1695,"type":15},"API Development","api-development",{"name":1697,"slug":1698,"type":15},"CLI","cli",{"name":1700,"slug":1701,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1704,"name":1704,"fn":1705,"description":1706,"org":1707,"tags":1708,"stars":1667,"repoUrl":1668,"updatedAt":1721},"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},[1709,1712,1715,1718],{"name":1710,"slug":1711,"type":15},"Cloudflare","cloudflare",{"name":1713,"slug":1714,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1716,"slug":1717,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1719,"slug":1720,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":1667,"repoUrl":1668,"updatedAt":1740},"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},[1728,1731,1734,1737],{"name":1729,"slug":1730,"type":15},"Productivity","productivity",{"name":1732,"slug":1733,"type":15},"Project Management","project-management",{"name":1735,"slug":1736,"type":15},"Strategy","strategy",{"name":1738,"slug":1739,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1742,"name":1742,"fn":1743,"description":1744,"org":1745,"tags":1746,"stars":1667,"repoUrl":1668,"updatedAt":1756},"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},[1747,1750,1752,1755],{"name":1748,"slug":1749,"type":15},"Design","design",{"name":1751,"slug":1742,"type":15},"Figma",{"name":1753,"slug":1754,"type":15},"Frontend","frontend",{"name":1683,"slug":1684,"type":15},"2026-04-12T05:06:47.939943",{"slug":1758,"name":1758,"fn":1759,"description":1760,"org":1761,"tags":1762,"stars":1667,"repoUrl":1668,"updatedAt":1772},"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},[1763,1764,1767,1768,1769],{"name":1748,"slug":1749,"type":15},{"name":1765,"slug":1766,"type":15},"Design System","design-system",{"name":1751,"slug":1742,"type":15},{"name":1753,"slug":1754,"type":15},{"name":1770,"slug":1771,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1774,"name":1774,"fn":1775,"description":1776,"org":1777,"tags":1778,"stars":1667,"repoUrl":1668,"updatedAt":1786},"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},[1779,1780,1781,1784,1785],{"name":1748,"slug":1749,"type":15},{"name":1765,"slug":1766,"type":15},{"name":1782,"slug":1783,"type":15},"Documentation","documentation",{"name":1751,"slug":1742,"type":15},{"name":1753,"slug":1754,"type":15},"2026-05-16T06:07:47.821474",{"slug":1788,"name":1788,"fn":1789,"description":1790,"org":1791,"tags":1792,"stars":1667,"repoUrl":1668,"updatedAt":1798},"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},[1793,1794,1795,1796,1797],{"name":1748,"slug":1749,"type":15},{"name":1751,"slug":1742,"type":15},{"name":1753,"slug":1754,"type":15},{"name":1770,"slug":1771,"type":15},{"name":1665,"slug":1666,"type":15},"2026-05-16T06:07:40.583615",{"slug":1800,"name":1800,"fn":1801,"description":1802,"org":1803,"tags":1804,"stars":1667,"repoUrl":1668,"updatedAt":1813},"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},[1805,1808,1809,1812],{"name":1806,"slug":1807,"type":15},"Animation","animation",{"name":1700,"slug":1701,"type":15},{"name":1810,"slug":1811,"type":15},"Creative","creative",{"name":1748,"slug":1749,"type":15},"2026-05-02T05:31:48.48485",{"slug":1815,"name":1815,"fn":1816,"description":1817,"org":1818,"tags":1819,"stars":1667,"repoUrl":1668,"updatedAt":1829},"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},[1820,1821,1822,1825,1828],{"name":1810,"slug":1811,"type":15},{"name":1748,"slug":1749,"type":15},{"name":1823,"slug":1824,"type":15},"Image Generation","image-generation",{"name":1826,"slug":1827,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1832,"total":1945},[1833,1849,1865,1877,1895,1913,1933],{"slug":1834,"name":1834,"fn":1835,"description":1836,"org":1837,"tags":1838,"stars":28,"repoUrl":29,"updatedAt":30},"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},[1839,1842,1845,1848],{"name":1840,"slug":1841,"type":15},"Accessibility","accessibility",{"name":1843,"slug":1844,"type":15},"Charts","charts",{"name":1846,"slug":1847,"type":15},"Data Visualization","data-visualization",{"name":1748,"slug":1749,"type":15},{"slug":1850,"name":1850,"fn":1851,"description":1852,"org":1853,"tags":1854,"stars":28,"repoUrl":29,"updatedAt":1864},"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},[1855,1858,1861],{"name":1856,"slug":1857,"type":15},"Agents","agents",{"name":1859,"slug":1860,"type":15},"Browser Automation","browser-automation",{"name":1862,"slug":1863,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1866,"name":1866,"fn":1867,"description":1868,"org":1869,"tags":1870,"stars":28,"repoUrl":29,"updatedAt":1876},"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},[1871,1872,1875],{"name":1859,"slug":1860,"type":15},{"name":1873,"slug":1874,"type":15},"Local Development","local-development",{"name":1862,"slug":1863,"type":15},"2026-04-06T18:41:17.526867",{"slug":1878,"name":1878,"fn":1879,"description":1880,"org":1881,"tags":1882,"stars":28,"repoUrl":29,"updatedAt":1894},"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},[1883,1884,1885,1888,1891],{"name":1856,"slug":1857,"type":15},{"name":1716,"slug":1717,"type":15},{"name":1886,"slug":1887,"type":15},"SDK","sdk",{"name":1889,"slug":1890,"type":15},"Serverless","serverless",{"name":1892,"slug":1893,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1896,"name":1896,"fn":1897,"description":1898,"org":1899,"tags":1900,"stars":28,"repoUrl":29,"updatedAt":1912},"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},[1901,1902,1905,1908,1909],{"name":1753,"slug":1754,"type":15},{"name":1903,"slug":1904,"type":15},"React","react",{"name":1906,"slug":1907,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1770,"slug":1771,"type":15},{"name":1910,"slug":1911,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1914,"name":1914,"fn":1915,"description":1916,"org":1917,"tags":1918,"stars":28,"repoUrl":29,"updatedAt":1932},"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},[1919,1922,1925,1928,1931],{"name":1920,"slug":1921,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1923,"slug":1924,"type":15},"Cost Optimization","cost-optimization",{"name":1926,"slug":1927,"type":15},"LLM","llm",{"name":1929,"slug":1930,"type":15},"Performance","performance",{"name":1910,"slug":1911,"type":15},"2026-04-06T18:40:44.377464",{"slug":1934,"name":1934,"fn":1935,"description":1936,"org":1937,"tags":1938,"stars":28,"repoUrl":29,"updatedAt":1944},"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},[1939,1940,1943],{"name":1923,"slug":1924,"type":15},{"name":1941,"slug":1942,"type":15},"Database","database",{"name":1926,"slug":1927,"type":15},"2026-04-06T18:41:08.513425",600]