[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-send-message":3,"mdc-s1cfv1-key":39,"related-repo-openai-twilio-send-message":2275,"related-org-openai-twilio-send-message":2398},{"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-send-message","send messages via Twilio API","Send messages via Twilio's Programmable Messaging API across all channels — SMS, MMS, RCS, and WhatsApp. Covers text messages, media, rich content (cards, carousels, buttons), template-based sends, Messaging Services, status callbacks, and WhatsApp's 24-hour service window. Use when the user wants to send a message — whether they say \"send SMS\", \"text message\", \"branded message\", \"rich message\", \"WhatsApp message\", \"RCS message\", \"notification\", or \"alert\". For picking the right channel for a use case, first consult twilio-messaging-channel-advisor.\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},"WhatsApp","whatsapp",{"name":20,"slug":21,"type":15},"Messaging","messaging",{"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-send-message","---\nname: twilio-send-message\ndescription: >\n  Send messages via Twilio's Programmable Messaging API across all\n  channels — SMS, MMS, RCS, and WhatsApp. Covers text messages, media,\n  rich content (cards, carousels, buttons), template-based sends,\n  Messaging Services, status callbacks, and WhatsApp's 24-hour service\n  window. Use when the user wants to send a message — whether they\n  say \"send SMS\", \"text message\", \"branded message\", \"rich message\",\n  \"WhatsApp message\", \"RCS message\", \"notification\", or \"alert\". For\n  picking the right channel for a use case, first consult\n  twilio-messaging-channel-advisor.\n---\n\n## Overview\n\n**A single `messages.create()` call sends on any messaging channel — SMS, MMS, RCS, or WhatsApp.** The channel is determined by the sender address and the recipient's capabilities. For channel selection guidance and the full onboarding sequence, see `twilio-messaging-overview` and `twilio-messaging-channel-advisor`.\n\n| Channel | `to` format | Notes | Template required? |\n|---------|-------------|-------|--------------------|\n| SMS\u002FMMS | `+15551234567` | MMS: US\u002FCA\u002FAU only | No |\n| RCS (with SMS fallback) | `+15551234567` | Send via Messaging Service that has both an RCS sender and an SMS sender — Twilio attempts RCS first, falls back to SMS on failure | No |\n| RCS (no fallback) | `rcs:+15551234567` | Forces RCS only — fails if recipient isn't RCS-capable | No |\n| WhatsApp | `whatsapp:+15551234567` | Send via `whatsapp:`-prefixed `from` | Outside 24-hr window: yes |\n\n**For production:** Send via `messagingServiceSid` instead of `from`. This enables sender pool management, RCS→SMS fallback, SMS pumping protection, link shortening, compliance toolkit, and scheduling. See `twilio-messaging-services`.\n\n---\n\n## Prerequisites\n\n- Twilio account — New to Twilio? See `twilio-account-setup`\n- Environment variables: `TWILIO_ACCOUNT_SID`, `TWILIO_AUTH_TOKEN` — see `twilio-iam-auth-setup`\n- SDK: `pip install twilio` \u002F `npm install twilio`\n- Channel-specific senders:\n  - SMS\u002FMMS: a Twilio phone number (see `twilio-account-setup`)\n  - RCS: an RCS sender added to a Messaging Service (see `twilio-rcs-messaging`)\n  - WhatsApp: an active WhatsApp sender (see `twilio-whatsapp-send-message` for sandbox, `twilio-whatsapp-manage-senders` for production)\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\n# SMS\nsms = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Your order has shipped.\"\n)\n\n# RCS — forces RCS only, no fallback\nrcs = client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"rcs:+15558675310\",\n    body=\"Your order has shipped.\"\n)\n\n# WhatsApp\nwhatsapp = client.messages.create(\n    from_=\"whatsapp:+15017122661\",\n    to=\"whatsapp:+15558675310\",\n    body=\"Your order has shipped.\"\n)\n\n# Via Messaging Service (recommended — attempts RCS first, falls back to SMS)\nmsg = client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    body=\"Your order has shipped.\"\n)\n```\n\n**Node.js**\n```javascript\nconst client = require(\"twilio\")(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F SMS\nconst sms = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your order has shipped.\",\n});\n\n\u002F\u002F RCS — forces RCS only, no fallback\nconst rcs = await client.messages.create({\n    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to: \"rcs:+15558675310\",\n    body: \"Your order has shipped.\",\n});\n\n\u002F\u002F WhatsApp\nconst whatsapp = await client.messages.create({\n    from: \"whatsapp:+15017122661\",\n    to: \"whatsapp:+15558675310\",\n    body: \"Your order has shipped.\",\n});\n\n\u002F\u002F Via Messaging Service (attempts RCS first, falls back to SMS)\nconst msg = await client.messages.create({\n    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to: \"+15558675310\",\n    body: \"Your order has shipped.\",\n});\n```\n\n---\n\n## Key Patterns\n\n### Send with media (MMS, WhatsApp, RCS)\n\n```python\nclient.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\nSupported: images (JPEG, PNG, GIF), PDF, audio, video. 5 MB max per attachment.\n\n### Send a template (WhatsApp required outside 24-hr window; RCS rich content)\n\n```python\nclient.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    content_variables='{\"1\": \"Sarah\", \"2\": \"12345\"}'\n)\n```\n\nSee `twilio-content-template-builder` for building templates.\n\n### Track delivery status\n\n```python\nclient.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    body=\"Hello!\",\n    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fstatus\"\n)\n```\n\nTwilio POSTs at each state transition: `queued → sent → delivered` (or `failed`\u002F`undelivered`).\n\n### Configure RCS→SMS fallback\n\nConfigured on the Messaging Service, not per-message. Add both an RCS sender and an SMS sender to the same Messaging Service. Twilio attempts RCS first and falls back to SMS on failure. See `twilio-messaging-services` and `twilio-rcs-messaging`.\n\n---\n\n## Common Errors\n\n| Code | Meaning | Fix |\n|------|---------|-----|\n| 21211 | Invalid `to` number | Validate E.164 format |\n| 21408 | Region not permitted | Enable geo-permissions in Console |\n| 21610 | Recipient opted out | Do not retry; respect opt-out |\n| 21664 | `FallbackFrom` cannot be used with `From` sender | Use `messaging_service_sid` instead of `from` |\n| 21666 | `FallbackFrom` requires `MessagingServiceSid` | Send via a Messaging Service |\n| 21667 | `FallbackFrom` requires an RCS Sender on the Messaging Service | Add an RCS sender before configuring fallback |\n| 30003 | Unreachable destination | Carrier cannot deliver |\n| 30007 | Message filtered as spam | Review content and sender reputation |\n| 30034 | US A2P 10DLC — sender not registered | Register brand + campaign. See `twilio-compliance-onboarding` |\n| 30036 | Validity Period expired | Message aged out. Often indicates RCS fallback is misconfigured |\n| 63036 | RCS recipient unreachable | Configure SMS fallback on the Messaging Service |\n\n---\n\n## CANNOT\n\n- **Cannot send cross-channel in a single API call.** One `messages.create()` = one channel. For multi-channel fallback, use RCS→SMS via a Messaging Service, or implement sequencing in your app.\n- **Cannot send WhatsApp free-form outside the 24-hour service window.** Use a pre-approved template (`content_sid`). See `twilio-whatsapp-send-message`.\n- **Cannot send MMS outside US\u002FCanada.** For international rich media, use WhatsApp or RCS.\n- **Cannot configure RCS→SMS fallback without a Messaging Service.** Raw `from` sends don't support `FallbackFrom`.\n- **Cannot guarantee delivery on any channel.** Always implement status callbacks.\n\n---\n\n## Next Steps\n\n- **Pick a channel for your use case:** `twilio-messaging-channel-advisor`\n- **Full messaging platform overview:** `twilio-messaging-overview`\n- **Channel-specific deep dives:** `twilio-sms-send-message`, `twilio-rcs-messaging`, `twilio-whatsapp-send-message`\n- **Sender pools, fallback, production features:** `twilio-messaging-services`\n- **Build templates (cards, carousels, quick replies):** `twilio-content-template-builder`\n- **Handle inbound messages and status callbacks:** `twilio-messaging-webhooks`\n- **US A2P 10DLC compliance:** `twilio-compliance-onboarding`\n- **OTP \u002F verification use cases:** `twilio-verify-send-otp`\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,90,252,284,288,294,409,412,418,426,716,724,1492,1495,1501,1508,1560,1565,1571,1622,1635,1641,1692,1721,1727,1744,1747,1753,2033,2036,2042,2129,2132,2138,2269],{"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,72,74,80,82,88],{"type":45,"tag":58,"props":59,"children":60},"strong",{},[61,63,70],{"type":51,"value":62},"A single ",{"type":45,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":51,"value":69},"messages.create()",{"type":51,"value":71}," call sends on any messaging channel — SMS, MMS, RCS, or WhatsApp.",{"type":51,"value":73}," The channel is determined by the sender address and the recipient's capabilities. For channel selection guidance and the full onboarding sequence, see ",{"type":45,"tag":64,"props":75,"children":77},{"className":76},[],[78],{"type":51,"value":79},"twilio-messaging-overview",{"type":51,"value":81}," and ",{"type":45,"tag":64,"props":83,"children":85},{"className":84},[],[86],{"type":51,"value":87},"twilio-messaging-channel-advisor",{"type":51,"value":89},".",{"type":45,"tag":91,"props":92,"children":93},"table",{},[94,129],{"type":45,"tag":95,"props":96,"children":97},"thead",{},[98],{"type":45,"tag":99,"props":100,"children":101},"tr",{},[102,108,119,124],{"type":45,"tag":103,"props":104,"children":105},"th",{},[106],{"type":51,"value":107},"Channel",{"type":45,"tag":103,"props":109,"children":110},{},[111,117],{"type":45,"tag":64,"props":112,"children":114},{"className":113},[],[115],{"type":51,"value":116},"to",{"type":51,"value":118}," format",{"type":45,"tag":103,"props":120,"children":121},{},[122],{"type":51,"value":123},"Notes",{"type":45,"tag":103,"props":125,"children":126},{},[127],{"type":51,"value":128},"Template required?",{"type":45,"tag":130,"props":131,"children":132},"tbody",{},[133,161,186,212],{"type":45,"tag":99,"props":134,"children":135},{},[136,142,151,156],{"type":45,"tag":137,"props":138,"children":139},"td",{},[140],{"type":51,"value":141},"SMS\u002FMMS",{"type":45,"tag":137,"props":143,"children":144},{},[145],{"type":45,"tag":64,"props":146,"children":148},{"className":147},[],[149],{"type":51,"value":150},"+15551234567",{"type":45,"tag":137,"props":152,"children":153},{},[154],{"type":51,"value":155},"MMS: US\u002FCA\u002FAU only",{"type":45,"tag":137,"props":157,"children":158},{},[159],{"type":51,"value":160},"No",{"type":45,"tag":99,"props":162,"children":163},{},[164,169,177,182],{"type":45,"tag":137,"props":165,"children":166},{},[167],{"type":51,"value":168},"RCS (with SMS fallback)",{"type":45,"tag":137,"props":170,"children":171},{},[172],{"type":45,"tag":64,"props":173,"children":175},{"className":174},[],[176],{"type":51,"value":150},{"type":45,"tag":137,"props":178,"children":179},{},[180],{"type":51,"value":181},"Send via Messaging Service that has both an RCS sender and an SMS sender — Twilio attempts RCS first, falls back to SMS on failure",{"type":45,"tag":137,"props":183,"children":184},{},[185],{"type":51,"value":160},{"type":45,"tag":99,"props":187,"children":188},{},[189,194,203,208],{"type":45,"tag":137,"props":190,"children":191},{},[192],{"type":51,"value":193},"RCS (no fallback)",{"type":45,"tag":137,"props":195,"children":196},{},[197],{"type":45,"tag":64,"props":198,"children":200},{"className":199},[],[201],{"type":51,"value":202},"rcs:+15551234567",{"type":45,"tag":137,"props":204,"children":205},{},[206],{"type":51,"value":207},"Forces RCS only — fails if recipient isn't RCS-capable",{"type":45,"tag":137,"props":209,"children":210},{},[211],{"type":51,"value":160},{"type":45,"tag":99,"props":213,"children":214},{},[215,219,228,247],{"type":45,"tag":137,"props":216,"children":217},{},[218],{"type":51,"value":17},{"type":45,"tag":137,"props":220,"children":221},{},[222],{"type":45,"tag":64,"props":223,"children":225},{"className":224},[],[226],{"type":51,"value":227},"whatsapp:+15551234567",{"type":45,"tag":137,"props":229,"children":230},{},[231,233,239,241],{"type":51,"value":232},"Send via ",{"type":45,"tag":64,"props":234,"children":236},{"className":235},[],[237],{"type":51,"value":238},"whatsapp:",{"type":51,"value":240},"-prefixed ",{"type":45,"tag":64,"props":242,"children":244},{"className":243},[],[245],{"type":51,"value":246},"from",{"type":45,"tag":137,"props":248,"children":249},{},[250],{"type":51,"value":251},"Outside 24-hr window: yes",{"type":45,"tag":54,"props":253,"children":254},{},[255,260,262,268,270,275,277,283],{"type":45,"tag":58,"props":256,"children":257},{},[258],{"type":51,"value":259},"For production:",{"type":51,"value":261}," Send via ",{"type":45,"tag":64,"props":263,"children":265},{"className":264},[],[266],{"type":51,"value":267},"messagingServiceSid",{"type":51,"value":269}," instead of ",{"type":45,"tag":64,"props":271,"children":273},{"className":272},[],[274],{"type":51,"value":246},{"type":51,"value":276},". This enables sender pool management, RCS→SMS fallback, SMS pumping protection, link shortening, compliance toolkit, and scheduling. See ",{"type":45,"tag":64,"props":278,"children":280},{"className":279},[],[281],{"type":51,"value":282},"twilio-messaging-services",{"type":51,"value":89},{"type":45,"tag":285,"props":286,"children":287},"hr",{},[],{"type":45,"tag":46,"props":289,"children":291},{"id":290},"prerequisites",[292],{"type":51,"value":293},"Prerequisites",{"type":45,"tag":295,"props":296,"children":297},"ul",{},[298,310,337,356],{"type":45,"tag":299,"props":300,"children":301},"li",{},[302,304],{"type":51,"value":303},"Twilio account — New to Twilio? See ",{"type":45,"tag":64,"props":305,"children":307},{"className":306},[],[308],{"type":51,"value":309},"twilio-account-setup",{"type":45,"tag":299,"props":311,"children":312},{},[313,315,321,323,329,331],{"type":51,"value":314},"Environment variables: ",{"type":45,"tag":64,"props":316,"children":318},{"className":317},[],[319],{"type":51,"value":320},"TWILIO_ACCOUNT_SID",{"type":51,"value":322},", ",{"type":45,"tag":64,"props":324,"children":326},{"className":325},[],[327],{"type":51,"value":328},"TWILIO_AUTH_TOKEN",{"type":51,"value":330}," — see ",{"type":45,"tag":64,"props":332,"children":334},{"className":333},[],[335],{"type":51,"value":336},"twilio-iam-auth-setup",{"type":45,"tag":299,"props":338,"children":339},{},[340,342,348,350],{"type":51,"value":341},"SDK: ",{"type":45,"tag":64,"props":343,"children":345},{"className":344},[],[346],{"type":51,"value":347},"pip install twilio",{"type":51,"value":349}," \u002F ",{"type":45,"tag":64,"props":351,"children":353},{"className":352},[],[354],{"type":51,"value":355},"npm install twilio",{"type":45,"tag":299,"props":357,"children":358},{},[359,361],{"type":51,"value":360},"Channel-specific senders:\n",{"type":45,"tag":295,"props":362,"children":363},{},[364,376,388],{"type":45,"tag":299,"props":365,"children":366},{},[367,369,374],{"type":51,"value":368},"SMS\u002FMMS: a Twilio phone number (see ",{"type":45,"tag":64,"props":370,"children":372},{"className":371},[],[373],{"type":51,"value":309},{"type":51,"value":375},")",{"type":45,"tag":299,"props":377,"children":378},{},[379,381,387],{"type":51,"value":380},"RCS: an RCS sender added to a Messaging Service (see ",{"type":45,"tag":64,"props":382,"children":384},{"className":383},[],[385],{"type":51,"value":386},"twilio-rcs-messaging",{"type":51,"value":375},{"type":45,"tag":299,"props":389,"children":390},{},[391,393,399,401,407],{"type":51,"value":392},"WhatsApp: an active WhatsApp sender (see ",{"type":45,"tag":64,"props":394,"children":396},{"className":395},[],[397],{"type":51,"value":398},"twilio-whatsapp-send-message",{"type":51,"value":400}," for sandbox, ",{"type":45,"tag":64,"props":402,"children":404},{"className":403},[],[405],{"type":51,"value":406},"twilio-whatsapp-manage-senders",{"type":51,"value":408}," for production)",{"type":45,"tag":285,"props":410,"children":411},{},[],{"type":45,"tag":46,"props":413,"children":415},{"id":414},"quickstart",[416],{"type":51,"value":417},"Quickstart",{"type":45,"tag":54,"props":419,"children":420},{},[421],{"type":45,"tag":58,"props":422,"children":423},{},[424],{"type":51,"value":425},"Python",{"type":45,"tag":427,"props":428,"children":433},"pre",{"className":429,"code":430,"language":431,"meta":432,"style":432},"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\n# SMS\nsms = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Your order has shipped.\"\n)\n\n# RCS — forces RCS only, no fallback\nrcs = client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"rcs:+15558675310\",\n    body=\"Your order has shipped.\"\n)\n\n# WhatsApp\nwhatsapp = client.messages.create(\n    from_=\"whatsapp:+15017122661\",\n    to=\"whatsapp:+15558675310\",\n    body=\"Your order has shipped.\"\n)\n\n# Via Messaging Service (recommended — attempts RCS first, falls back to SMS)\nmsg = client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    body=\"Your order has shipped.\"\n)\n","python","",[434],{"type":45,"tag":64,"props":435,"children":436},{"__ignoreMap":432},[437,448,457,467,476,484,493,502,511,520,529,538,546,555,564,573,582,590,598,606,615,624,633,642,650,658,666,675,684,692,700,708],{"type":45,"tag":438,"props":439,"children":442},"span",{"class":440,"line":441},"line",1,[443],{"type":45,"tag":438,"props":444,"children":445},{},[446],{"type":51,"value":447},"import os\n",{"type":45,"tag":438,"props":449,"children":451},{"class":440,"line":450},2,[452],{"type":45,"tag":438,"props":453,"children":454},{},[455],{"type":51,"value":456},"from twilio.rest import Client\n",{"type":45,"tag":438,"props":458,"children":460},{"class":440,"line":459},3,[461],{"type":45,"tag":438,"props":462,"children":464},{"emptyLinePlaceholder":463},true,[465],{"type":51,"value":466},"\n",{"type":45,"tag":438,"props":468,"children":470},{"class":440,"line":469},4,[471],{"type":45,"tag":438,"props":472,"children":473},{},[474],{"type":51,"value":475},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":45,"tag":438,"props":477,"children":479},{"class":440,"line":478},5,[480],{"type":45,"tag":438,"props":481,"children":482},{"emptyLinePlaceholder":463},[483],{"type":51,"value":466},{"type":45,"tag":438,"props":485,"children":487},{"class":440,"line":486},6,[488],{"type":45,"tag":438,"props":489,"children":490},{},[491],{"type":51,"value":492},"# SMS\n",{"type":45,"tag":438,"props":494,"children":496},{"class":440,"line":495},7,[497],{"type":45,"tag":438,"props":498,"children":499},{},[500],{"type":51,"value":501},"sms = client.messages.create(\n",{"type":45,"tag":438,"props":503,"children":505},{"class":440,"line":504},8,[506],{"type":45,"tag":438,"props":507,"children":508},{},[509],{"type":51,"value":510},"    from_=\"+15017122661\",\n",{"type":45,"tag":438,"props":512,"children":514},{"class":440,"line":513},9,[515],{"type":45,"tag":438,"props":516,"children":517},{},[518],{"type":51,"value":519},"    to=\"+15558675310\",\n",{"type":45,"tag":438,"props":521,"children":523},{"class":440,"line":522},10,[524],{"type":45,"tag":438,"props":525,"children":526},{},[527],{"type":51,"value":528},"    body=\"Your order has shipped.\"\n",{"type":45,"tag":438,"props":530,"children":532},{"class":440,"line":531},11,[533],{"type":45,"tag":438,"props":534,"children":535},{},[536],{"type":51,"value":537},")\n",{"type":45,"tag":438,"props":539,"children":541},{"class":440,"line":540},12,[542],{"type":45,"tag":438,"props":543,"children":544},{"emptyLinePlaceholder":463},[545],{"type":51,"value":466},{"type":45,"tag":438,"props":547,"children":549},{"class":440,"line":548},13,[550],{"type":45,"tag":438,"props":551,"children":552},{},[553],{"type":51,"value":554},"# RCS — forces RCS only, no fallback\n",{"type":45,"tag":438,"props":556,"children":558},{"class":440,"line":557},14,[559],{"type":45,"tag":438,"props":560,"children":561},{},[562],{"type":51,"value":563},"rcs = client.messages.create(\n",{"type":45,"tag":438,"props":565,"children":567},{"class":440,"line":566},15,[568],{"type":45,"tag":438,"props":569,"children":570},{},[571],{"type":51,"value":572},"    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":45,"tag":438,"props":574,"children":576},{"class":440,"line":575},16,[577],{"type":45,"tag":438,"props":578,"children":579},{},[580],{"type":51,"value":581},"    to=\"rcs:+15558675310\",\n",{"type":45,"tag":438,"props":583,"children":585},{"class":440,"line":584},17,[586],{"type":45,"tag":438,"props":587,"children":588},{},[589],{"type":51,"value":528},{"type":45,"tag":438,"props":591,"children":593},{"class":440,"line":592},18,[594],{"type":45,"tag":438,"props":595,"children":596},{},[597],{"type":51,"value":537},{"type":45,"tag":438,"props":599,"children":601},{"class":440,"line":600},19,[602],{"type":45,"tag":438,"props":603,"children":604},{"emptyLinePlaceholder":463},[605],{"type":51,"value":466},{"type":45,"tag":438,"props":607,"children":609},{"class":440,"line":608},20,[610],{"type":45,"tag":438,"props":611,"children":612},{},[613],{"type":51,"value":614},"# WhatsApp\n",{"type":45,"tag":438,"props":616,"children":618},{"class":440,"line":617},21,[619],{"type":45,"tag":438,"props":620,"children":621},{},[622],{"type":51,"value":623},"whatsapp = client.messages.create(\n",{"type":45,"tag":438,"props":625,"children":627},{"class":440,"line":626},22,[628],{"type":45,"tag":438,"props":629,"children":630},{},[631],{"type":51,"value":632},"    from_=\"whatsapp:+15017122661\",\n",{"type":45,"tag":438,"props":634,"children":636},{"class":440,"line":635},23,[637],{"type":45,"tag":438,"props":638,"children":639},{},[640],{"type":51,"value":641},"    to=\"whatsapp:+15558675310\",\n",{"type":45,"tag":438,"props":643,"children":645},{"class":440,"line":644},24,[646],{"type":45,"tag":438,"props":647,"children":648},{},[649],{"type":51,"value":528},{"type":45,"tag":438,"props":651,"children":653},{"class":440,"line":652},25,[654],{"type":45,"tag":438,"props":655,"children":656},{},[657],{"type":51,"value":537},{"type":45,"tag":438,"props":659,"children":661},{"class":440,"line":660},26,[662],{"type":45,"tag":438,"props":663,"children":664},{"emptyLinePlaceholder":463},[665],{"type":51,"value":466},{"type":45,"tag":438,"props":667,"children":669},{"class":440,"line":668},27,[670],{"type":45,"tag":438,"props":671,"children":672},{},[673],{"type":51,"value":674},"# Via Messaging Service (recommended — attempts RCS first, falls back to SMS)\n",{"type":45,"tag":438,"props":676,"children":678},{"class":440,"line":677},28,[679],{"type":45,"tag":438,"props":680,"children":681},{},[682],{"type":51,"value":683},"msg = client.messages.create(\n",{"type":45,"tag":438,"props":685,"children":687},{"class":440,"line":686},29,[688],{"type":45,"tag":438,"props":689,"children":690},{},[691],{"type":51,"value":572},{"type":45,"tag":438,"props":693,"children":695},{"class":440,"line":694},30,[696],{"type":45,"tag":438,"props":697,"children":698},{},[699],{"type":51,"value":519},{"type":45,"tag":438,"props":701,"children":703},{"class":440,"line":702},31,[704],{"type":45,"tag":438,"props":705,"children":706},{},[707],{"type":51,"value":528},{"type":45,"tag":438,"props":709,"children":711},{"class":440,"line":710},32,[712],{"type":45,"tag":438,"props":713,"children":714},{},[715],{"type":51,"value":537},{"type":45,"tag":54,"props":717,"children":718},{},[719],{"type":45,"tag":58,"props":720,"children":721},{},[722],{"type":51,"value":723},"Node.js",{"type":45,"tag":427,"props":725,"children":729},{"className":726,"code":727,"language":728,"meta":432,"style":432},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const client = require(\"twilio\")(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F SMS\nconst sms = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your order has shipped.\",\n});\n\n\u002F\u002F RCS — forces RCS only, no fallback\nconst rcs = await client.messages.create({\n    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to: \"rcs:+15558675310\",\n    body: \"Your order has shipped.\",\n});\n\n\u002F\u002F WhatsApp\nconst whatsapp = await client.messages.create({\n    from: \"whatsapp:+15017122661\",\n    to: \"whatsapp:+15558675310\",\n    body: \"Your order has shipped.\",\n});\n\n\u002F\u002F Via Messaging Service (attempts RCS first, falls back to SMS)\nconst msg = await client.messages.create({\n    messagingServiceSid: \"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to: \"+15558675310\",\n    body: \"Your order has shipped.\",\n});\n","javascript",[730],{"type":45,"tag":64,"props":731,"children":732},{"__ignoreMap":432},[733,833,840,849,903,936,965,994,1010,1017,1025,1073,1102,1130,1157,1172,1179,1187,1235,1263,1291,1318,1333,1340,1348,1396,1423,1450,1477],{"type":45,"tag":438,"props":734,"children":735},{"class":440,"line":441},[736,742,748,754,760,765,770,775,779,784,788,793,797,801,806,811,815,819,823,828],{"type":45,"tag":438,"props":737,"children":739},{"style":738},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[740],{"type":51,"value":741},"const",{"type":45,"tag":438,"props":743,"children":745},{"style":744},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[746],{"type":51,"value":747}," client ",{"type":45,"tag":438,"props":749,"children":751},{"style":750},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[752],{"type":51,"value":753},"=",{"type":45,"tag":438,"props":755,"children":757},{"style":756},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[758],{"type":51,"value":759}," require",{"type":45,"tag":438,"props":761,"children":762},{"style":744},[763],{"type":51,"value":764},"(",{"type":45,"tag":438,"props":766,"children":767},{"style":750},[768],{"type":51,"value":769},"\"",{"type":45,"tag":438,"props":771,"children":773},{"style":772},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[774],{"type":51,"value":27},{"type":45,"tag":438,"props":776,"children":777},{"style":750},[778],{"type":51,"value":769},{"type":45,"tag":438,"props":780,"children":781},{"style":744},[782],{"type":51,"value":783},")(process",{"type":45,"tag":438,"props":785,"children":786},{"style":750},[787],{"type":51,"value":89},{"type":45,"tag":438,"props":789,"children":790},{"style":744},[791],{"type":51,"value":792},"env",{"type":45,"tag":438,"props":794,"children":795},{"style":750},[796],{"type":51,"value":89},{"type":45,"tag":438,"props":798,"children":799},{"style":744},[800],{"type":51,"value":320},{"type":45,"tag":438,"props":802,"children":803},{"style":750},[804],{"type":51,"value":805},",",{"type":45,"tag":438,"props":807,"children":808},{"style":744},[809],{"type":51,"value":810}," process",{"type":45,"tag":438,"props":812,"children":813},{"style":750},[814],{"type":51,"value":89},{"type":45,"tag":438,"props":816,"children":817},{"style":744},[818],{"type":51,"value":792},{"type":45,"tag":438,"props":820,"children":821},{"style":750},[822],{"type":51,"value":89},{"type":45,"tag":438,"props":824,"children":825},{"style":744},[826],{"type":51,"value":827},"TWILIO_AUTH_TOKEN)",{"type":45,"tag":438,"props":829,"children":830},{"style":750},[831],{"type":51,"value":832},";\n",{"type":45,"tag":438,"props":834,"children":835},{"class":440,"line":450},[836],{"type":45,"tag":438,"props":837,"children":838},{"emptyLinePlaceholder":463},[839],{"type":51,"value":466},{"type":45,"tag":438,"props":841,"children":842},{"class":440,"line":459},[843],{"type":45,"tag":438,"props":844,"children":846},{"style":845},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[847],{"type":51,"value":848},"\u002F\u002F SMS\n",{"type":45,"tag":438,"props":850,"children":851},{"class":440,"line":469},[852,856,861,865,871,876,880,885,889,894,898],{"type":45,"tag":438,"props":853,"children":854},{"style":738},[855],{"type":51,"value":741},{"type":45,"tag":438,"props":857,"children":858},{"style":744},[859],{"type":51,"value":860}," sms ",{"type":45,"tag":438,"props":862,"children":863},{"style":750},[864],{"type":51,"value":753},{"type":45,"tag":438,"props":866,"children":868},{"style":867},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[869],{"type":51,"value":870}," await",{"type":45,"tag":438,"props":872,"children":873},{"style":744},[874],{"type":51,"value":875}," client",{"type":45,"tag":438,"props":877,"children":878},{"style":750},[879],{"type":51,"value":89},{"type":45,"tag":438,"props":881,"children":882},{"style":744},[883],{"type":51,"value":884},"messages",{"type":45,"tag":438,"props":886,"children":887},{"style":750},[888],{"type":51,"value":89},{"type":45,"tag":438,"props":890,"children":891},{"style":756},[892],{"type":51,"value":893},"create",{"type":45,"tag":438,"props":895,"children":896},{"style":744},[897],{"type":51,"value":764},{"type":45,"tag":438,"props":899,"children":900},{"style":750},[901],{"type":51,"value":902},"{\n",{"type":45,"tag":438,"props":904,"children":905},{"class":440,"line":478},[906,912,917,922,927,931],{"type":45,"tag":438,"props":907,"children":909},{"style":908},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[910],{"type":51,"value":911},"    from",{"type":45,"tag":438,"props":913,"children":914},{"style":750},[915],{"type":51,"value":916},":",{"type":45,"tag":438,"props":918,"children":919},{"style":750},[920],{"type":51,"value":921}," \"",{"type":45,"tag":438,"props":923,"children":924},{"style":772},[925],{"type":51,"value":926},"+15017122661",{"type":45,"tag":438,"props":928,"children":929},{"style":750},[930],{"type":51,"value":769},{"type":45,"tag":438,"props":932,"children":933},{"style":750},[934],{"type":51,"value":935},",\n",{"type":45,"tag":438,"props":937,"children":938},{"class":440,"line":486},[939,944,948,952,957,961],{"type":45,"tag":438,"props":940,"children":941},{"style":908},[942],{"type":51,"value":943},"    to",{"type":45,"tag":438,"props":945,"children":946},{"style":750},[947],{"type":51,"value":916},{"type":45,"tag":438,"props":949,"children":950},{"style":750},[951],{"type":51,"value":921},{"type":45,"tag":438,"props":953,"children":954},{"style":772},[955],{"type":51,"value":956},"+15558675310",{"type":45,"tag":438,"props":958,"children":959},{"style":750},[960],{"type":51,"value":769},{"type":45,"tag":438,"props":962,"children":963},{"style":750},[964],{"type":51,"value":935},{"type":45,"tag":438,"props":966,"children":967},{"class":440,"line":495},[968,973,977,981,986,990],{"type":45,"tag":438,"props":969,"children":970},{"style":908},[971],{"type":51,"value":972},"    body",{"type":45,"tag":438,"props":974,"children":975},{"style":750},[976],{"type":51,"value":916},{"type":45,"tag":438,"props":978,"children":979},{"style":750},[980],{"type":51,"value":921},{"type":45,"tag":438,"props":982,"children":983},{"style":772},[984],{"type":51,"value":985},"Your order has shipped.",{"type":45,"tag":438,"props":987,"children":988},{"style":750},[989],{"type":51,"value":769},{"type":45,"tag":438,"props":991,"children":992},{"style":750},[993],{"type":51,"value":935},{"type":45,"tag":438,"props":995,"children":996},{"class":440,"line":504},[997,1002,1006],{"type":45,"tag":438,"props":998,"children":999},{"style":750},[1000],{"type":51,"value":1001},"}",{"type":45,"tag":438,"props":1003,"children":1004},{"style":744},[1005],{"type":51,"value":375},{"type":45,"tag":438,"props":1007,"children":1008},{"style":750},[1009],{"type":51,"value":832},{"type":45,"tag":438,"props":1011,"children":1012},{"class":440,"line":513},[1013],{"type":45,"tag":438,"props":1014,"children":1015},{"emptyLinePlaceholder":463},[1016],{"type":51,"value":466},{"type":45,"tag":438,"props":1018,"children":1019},{"class":440,"line":522},[1020],{"type":45,"tag":438,"props":1021,"children":1022},{"style":845},[1023],{"type":51,"value":1024},"\u002F\u002F RCS — forces RCS only, no fallback\n",{"type":45,"tag":438,"props":1026,"children":1027},{"class":440,"line":531},[1028,1032,1037,1041,1045,1049,1053,1057,1061,1065,1069],{"type":45,"tag":438,"props":1029,"children":1030},{"style":738},[1031],{"type":51,"value":741},{"type":45,"tag":438,"props":1033,"children":1034},{"style":744},[1035],{"type":51,"value":1036}," rcs ",{"type":45,"tag":438,"props":1038,"children":1039},{"style":750},[1040],{"type":51,"value":753},{"type":45,"tag":438,"props":1042,"children":1043},{"style":867},[1044],{"type":51,"value":870},{"type":45,"tag":438,"props":1046,"children":1047},{"style":744},[1048],{"type":51,"value":875},{"type":45,"tag":438,"props":1050,"children":1051},{"style":750},[1052],{"type":51,"value":89},{"type":45,"tag":438,"props":1054,"children":1055},{"style":744},[1056],{"type":51,"value":884},{"type":45,"tag":438,"props":1058,"children":1059},{"style":750},[1060],{"type":51,"value":89},{"type":45,"tag":438,"props":1062,"children":1063},{"style":756},[1064],{"type":51,"value":893},{"type":45,"tag":438,"props":1066,"children":1067},{"style":744},[1068],{"type":51,"value":764},{"type":45,"tag":438,"props":1070,"children":1071},{"style":750},[1072],{"type":51,"value":902},{"type":45,"tag":438,"props":1074,"children":1075},{"class":440,"line":540},[1076,1081,1085,1089,1094,1098],{"type":45,"tag":438,"props":1077,"children":1078},{"style":908},[1079],{"type":51,"value":1080},"    messagingServiceSid",{"type":45,"tag":438,"props":1082,"children":1083},{"style":750},[1084],{"type":51,"value":916},{"type":45,"tag":438,"props":1086,"children":1087},{"style":750},[1088],{"type":51,"value":921},{"type":45,"tag":438,"props":1090,"children":1091},{"style":772},[1092],{"type":51,"value":1093},"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",{"type":45,"tag":438,"props":1095,"children":1096},{"style":750},[1097],{"type":51,"value":769},{"type":45,"tag":438,"props":1099,"children":1100},{"style":750},[1101],{"type":51,"value":935},{"type":45,"tag":438,"props":1103,"children":1104},{"class":440,"line":548},[1105,1109,1113,1117,1122,1126],{"type":45,"tag":438,"props":1106,"children":1107},{"style":908},[1108],{"type":51,"value":943},{"type":45,"tag":438,"props":1110,"children":1111},{"style":750},[1112],{"type":51,"value":916},{"type":45,"tag":438,"props":1114,"children":1115},{"style":750},[1116],{"type":51,"value":921},{"type":45,"tag":438,"props":1118,"children":1119},{"style":772},[1120],{"type":51,"value":1121},"rcs:+15558675310",{"type":45,"tag":438,"props":1123,"children":1124},{"style":750},[1125],{"type":51,"value":769},{"type":45,"tag":438,"props":1127,"children":1128},{"style":750},[1129],{"type":51,"value":935},{"type":45,"tag":438,"props":1131,"children":1132},{"class":440,"line":557},[1133,1137,1141,1145,1149,1153],{"type":45,"tag":438,"props":1134,"children":1135},{"style":908},[1136],{"type":51,"value":972},{"type":45,"tag":438,"props":1138,"children":1139},{"style":750},[1140],{"type":51,"value":916},{"type":45,"tag":438,"props":1142,"children":1143},{"style":750},[1144],{"type":51,"value":921},{"type":45,"tag":438,"props":1146,"children":1147},{"style":772},[1148],{"type":51,"value":985},{"type":45,"tag":438,"props":1150,"children":1151},{"style":750},[1152],{"type":51,"value":769},{"type":45,"tag":438,"props":1154,"children":1155},{"style":750},[1156],{"type":51,"value":935},{"type":45,"tag":438,"props":1158,"children":1159},{"class":440,"line":566},[1160,1164,1168],{"type":45,"tag":438,"props":1161,"children":1162},{"style":750},[1163],{"type":51,"value":1001},{"type":45,"tag":438,"props":1165,"children":1166},{"style":744},[1167],{"type":51,"value":375},{"type":45,"tag":438,"props":1169,"children":1170},{"style":750},[1171],{"type":51,"value":832},{"type":45,"tag":438,"props":1173,"children":1174},{"class":440,"line":575},[1175],{"type":45,"tag":438,"props":1176,"children":1177},{"emptyLinePlaceholder":463},[1178],{"type":51,"value":466},{"type":45,"tag":438,"props":1180,"children":1181},{"class":440,"line":584},[1182],{"type":45,"tag":438,"props":1183,"children":1184},{"style":845},[1185],{"type":51,"value":1186},"\u002F\u002F WhatsApp\n",{"type":45,"tag":438,"props":1188,"children":1189},{"class":440,"line":592},[1190,1194,1199,1203,1207,1211,1215,1219,1223,1227,1231],{"type":45,"tag":438,"props":1191,"children":1192},{"style":738},[1193],{"type":51,"value":741},{"type":45,"tag":438,"props":1195,"children":1196},{"style":744},[1197],{"type":51,"value":1198}," whatsapp ",{"type":45,"tag":438,"props":1200,"children":1201},{"style":750},[1202],{"type":51,"value":753},{"type":45,"tag":438,"props":1204,"children":1205},{"style":867},[1206],{"type":51,"value":870},{"type":45,"tag":438,"props":1208,"children":1209},{"style":744},[1210],{"type":51,"value":875},{"type":45,"tag":438,"props":1212,"children":1213},{"style":750},[1214],{"type":51,"value":89},{"type":45,"tag":438,"props":1216,"children":1217},{"style":744},[1218],{"type":51,"value":884},{"type":45,"tag":438,"props":1220,"children":1221},{"style":750},[1222],{"type":51,"value":89},{"type":45,"tag":438,"props":1224,"children":1225},{"style":756},[1226],{"type":51,"value":893},{"type":45,"tag":438,"props":1228,"children":1229},{"style":744},[1230],{"type":51,"value":764},{"type":45,"tag":438,"props":1232,"children":1233},{"style":750},[1234],{"type":51,"value":902},{"type":45,"tag":438,"props":1236,"children":1237},{"class":440,"line":600},[1238,1242,1246,1250,1255,1259],{"type":45,"tag":438,"props":1239,"children":1240},{"style":908},[1241],{"type":51,"value":911},{"type":45,"tag":438,"props":1243,"children":1244},{"style":750},[1245],{"type":51,"value":916},{"type":45,"tag":438,"props":1247,"children":1248},{"style":750},[1249],{"type":51,"value":921},{"type":45,"tag":438,"props":1251,"children":1252},{"style":772},[1253],{"type":51,"value":1254},"whatsapp:+15017122661",{"type":45,"tag":438,"props":1256,"children":1257},{"style":750},[1258],{"type":51,"value":769},{"type":45,"tag":438,"props":1260,"children":1261},{"style":750},[1262],{"type":51,"value":935},{"type":45,"tag":438,"props":1264,"children":1265},{"class":440,"line":608},[1266,1270,1274,1278,1283,1287],{"type":45,"tag":438,"props":1267,"children":1268},{"style":908},[1269],{"type":51,"value":943},{"type":45,"tag":438,"props":1271,"children":1272},{"style":750},[1273],{"type":51,"value":916},{"type":45,"tag":438,"props":1275,"children":1276},{"style":750},[1277],{"type":51,"value":921},{"type":45,"tag":438,"props":1279,"children":1280},{"style":772},[1281],{"type":51,"value":1282},"whatsapp:+15558675310",{"type":45,"tag":438,"props":1284,"children":1285},{"style":750},[1286],{"type":51,"value":769},{"type":45,"tag":438,"props":1288,"children":1289},{"style":750},[1290],{"type":51,"value":935},{"type":45,"tag":438,"props":1292,"children":1293},{"class":440,"line":617},[1294,1298,1302,1306,1310,1314],{"type":45,"tag":438,"props":1295,"children":1296},{"style":908},[1297],{"type":51,"value":972},{"type":45,"tag":438,"props":1299,"children":1300},{"style":750},[1301],{"type":51,"value":916},{"type":45,"tag":438,"props":1303,"children":1304},{"style":750},[1305],{"type":51,"value":921},{"type":45,"tag":438,"props":1307,"children":1308},{"style":772},[1309],{"type":51,"value":985},{"type":45,"tag":438,"props":1311,"children":1312},{"style":750},[1313],{"type":51,"value":769},{"type":45,"tag":438,"props":1315,"children":1316},{"style":750},[1317],{"type":51,"value":935},{"type":45,"tag":438,"props":1319,"children":1320},{"class":440,"line":626},[1321,1325,1329],{"type":45,"tag":438,"props":1322,"children":1323},{"style":750},[1324],{"type":51,"value":1001},{"type":45,"tag":438,"props":1326,"children":1327},{"style":744},[1328],{"type":51,"value":375},{"type":45,"tag":438,"props":1330,"children":1331},{"style":750},[1332],{"type":51,"value":832},{"type":45,"tag":438,"props":1334,"children":1335},{"class":440,"line":635},[1336],{"type":45,"tag":438,"props":1337,"children":1338},{"emptyLinePlaceholder":463},[1339],{"type":51,"value":466},{"type":45,"tag":438,"props":1341,"children":1342},{"class":440,"line":644},[1343],{"type":45,"tag":438,"props":1344,"children":1345},{"style":845},[1346],{"type":51,"value":1347},"\u002F\u002F Via Messaging Service (attempts RCS first, falls back to SMS)\n",{"type":45,"tag":438,"props":1349,"children":1350},{"class":440,"line":652},[1351,1355,1360,1364,1368,1372,1376,1380,1384,1388,1392],{"type":45,"tag":438,"props":1352,"children":1353},{"style":738},[1354],{"type":51,"value":741},{"type":45,"tag":438,"props":1356,"children":1357},{"style":744},[1358],{"type":51,"value":1359}," msg ",{"type":45,"tag":438,"props":1361,"children":1362},{"style":750},[1363],{"type":51,"value":753},{"type":45,"tag":438,"props":1365,"children":1366},{"style":867},[1367],{"type":51,"value":870},{"type":45,"tag":438,"props":1369,"children":1370},{"style":744},[1371],{"type":51,"value":875},{"type":45,"tag":438,"props":1373,"children":1374},{"style":750},[1375],{"type":51,"value":89},{"type":45,"tag":438,"props":1377,"children":1378},{"style":744},[1379],{"type":51,"value":884},{"type":45,"tag":438,"props":1381,"children":1382},{"style":750},[1383],{"type":51,"value":89},{"type":45,"tag":438,"props":1385,"children":1386},{"style":756},[1387],{"type":51,"value":893},{"type":45,"tag":438,"props":1389,"children":1390},{"style":744},[1391],{"type":51,"value":764},{"type":45,"tag":438,"props":1393,"children":1394},{"style":750},[1395],{"type":51,"value":902},{"type":45,"tag":438,"props":1397,"children":1398},{"class":440,"line":660},[1399,1403,1407,1411,1415,1419],{"type":45,"tag":438,"props":1400,"children":1401},{"style":908},[1402],{"type":51,"value":1080},{"type":45,"tag":438,"props":1404,"children":1405},{"style":750},[1406],{"type":51,"value":916},{"type":45,"tag":438,"props":1408,"children":1409},{"style":750},[1410],{"type":51,"value":921},{"type":45,"tag":438,"props":1412,"children":1413},{"style":772},[1414],{"type":51,"value":1093},{"type":45,"tag":438,"props":1416,"children":1417},{"style":750},[1418],{"type":51,"value":769},{"type":45,"tag":438,"props":1420,"children":1421},{"style":750},[1422],{"type":51,"value":935},{"type":45,"tag":438,"props":1424,"children":1425},{"class":440,"line":668},[1426,1430,1434,1438,1442,1446],{"type":45,"tag":438,"props":1427,"children":1428},{"style":908},[1429],{"type":51,"value":943},{"type":45,"tag":438,"props":1431,"children":1432},{"style":750},[1433],{"type":51,"value":916},{"type":45,"tag":438,"props":1435,"children":1436},{"style":750},[1437],{"type":51,"value":921},{"type":45,"tag":438,"props":1439,"children":1440},{"style":772},[1441],{"type":51,"value":956},{"type":45,"tag":438,"props":1443,"children":1444},{"style":750},[1445],{"type":51,"value":769},{"type":45,"tag":438,"props":1447,"children":1448},{"style":750},[1449],{"type":51,"value":935},{"type":45,"tag":438,"props":1451,"children":1452},{"class":440,"line":677},[1453,1457,1461,1465,1469,1473],{"type":45,"tag":438,"props":1454,"children":1455},{"style":908},[1456],{"type":51,"value":972},{"type":45,"tag":438,"props":1458,"children":1459},{"style":750},[1460],{"type":51,"value":916},{"type":45,"tag":438,"props":1462,"children":1463},{"style":750},[1464],{"type":51,"value":921},{"type":45,"tag":438,"props":1466,"children":1467},{"style":772},[1468],{"type":51,"value":985},{"type":45,"tag":438,"props":1470,"children":1471},{"style":750},[1472],{"type":51,"value":769},{"type":45,"tag":438,"props":1474,"children":1475},{"style":750},[1476],{"type":51,"value":935},{"type":45,"tag":438,"props":1478,"children":1479},{"class":440,"line":686},[1480,1484,1488],{"type":45,"tag":438,"props":1481,"children":1482},{"style":750},[1483],{"type":51,"value":1001},{"type":45,"tag":438,"props":1485,"children":1486},{"style":744},[1487],{"type":51,"value":375},{"type":45,"tag":438,"props":1489,"children":1490},{"style":750},[1491],{"type":51,"value":832},{"type":45,"tag":285,"props":1493,"children":1494},{},[],{"type":45,"tag":46,"props":1496,"children":1498},{"id":1497},"key-patterns",[1499],{"type":51,"value":1500},"Key Patterns",{"type":45,"tag":1502,"props":1503,"children":1505},"h3",{"id":1504},"send-with-media-mms-whatsapp-rcs",[1506],{"type":51,"value":1507},"Send with media (MMS, WhatsApp, RCS)",{"type":45,"tag":427,"props":1509,"children":1511},{"className":429,"code":1510,"language":431,"meta":432,"style":432},"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",[1512],{"type":45,"tag":64,"props":1513,"children":1514},{"__ignoreMap":432},[1515,1523,1530,1537,1545,1553],{"type":45,"tag":438,"props":1516,"children":1517},{"class":440,"line":441},[1518],{"type":45,"tag":438,"props":1519,"children":1520},{},[1521],{"type":51,"value":1522},"client.messages.create(\n",{"type":45,"tag":438,"props":1524,"children":1525},{"class":440,"line":450},[1526],{"type":45,"tag":438,"props":1527,"children":1528},{},[1529],{"type":51,"value":510},{"type":45,"tag":438,"props":1531,"children":1532},{"class":440,"line":459},[1533],{"type":45,"tag":438,"props":1534,"children":1535},{},[1536],{"type":51,"value":519},{"type":45,"tag":438,"props":1538,"children":1539},{"class":440,"line":469},[1540],{"type":45,"tag":438,"props":1541,"children":1542},{},[1543],{"type":51,"value":1544},"    body=\"Here is your invoice.\",\n",{"type":45,"tag":438,"props":1546,"children":1547},{"class":440,"line":478},[1548],{"type":45,"tag":438,"props":1549,"children":1550},{},[1551],{"type":51,"value":1552},"    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n",{"type":45,"tag":438,"props":1554,"children":1555},{"class":440,"line":486},[1556],{"type":45,"tag":438,"props":1557,"children":1558},{},[1559],{"type":51,"value":537},{"type":45,"tag":54,"props":1561,"children":1562},{},[1563],{"type":51,"value":1564},"Supported: images (JPEG, PNG, GIF), PDF, audio, video. 5 MB max per attachment.",{"type":45,"tag":1502,"props":1566,"children":1568},{"id":1567},"send-a-template-whatsapp-required-outside-24-hr-window-rcs-rich-content",[1569],{"type":51,"value":1570},"Send a template (WhatsApp required outside 24-hr window; RCS rich content)",{"type":45,"tag":427,"props":1572,"children":1574},{"className":429,"code":1573,"language":431,"meta":432,"style":432},"client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    content_variables='{\"1\": \"Sarah\", \"2\": \"12345\"}'\n)\n",[1575],{"type":45,"tag":64,"props":1576,"children":1577},{"__ignoreMap":432},[1578,1585,1592,1599,1607,1615],{"type":45,"tag":438,"props":1579,"children":1580},{"class":440,"line":441},[1581],{"type":45,"tag":438,"props":1582,"children":1583},{},[1584],{"type":51,"value":1522},{"type":45,"tag":438,"props":1586,"children":1587},{"class":440,"line":450},[1588],{"type":45,"tag":438,"props":1589,"children":1590},{},[1591],{"type":51,"value":572},{"type":45,"tag":438,"props":1593,"children":1594},{"class":440,"line":459},[1595],{"type":45,"tag":438,"props":1596,"children":1597},{},[1598],{"type":51,"value":519},{"type":45,"tag":438,"props":1600,"children":1601},{"class":440,"line":469},[1602],{"type":45,"tag":438,"props":1603,"children":1604},{},[1605],{"type":51,"value":1606},"    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":45,"tag":438,"props":1608,"children":1609},{"class":440,"line":478},[1610],{"type":45,"tag":438,"props":1611,"children":1612},{},[1613],{"type":51,"value":1614},"    content_variables='{\"1\": \"Sarah\", \"2\": \"12345\"}'\n",{"type":45,"tag":438,"props":1616,"children":1617},{"class":440,"line":486},[1618],{"type":45,"tag":438,"props":1619,"children":1620},{},[1621],{"type":51,"value":537},{"type":45,"tag":54,"props":1623,"children":1624},{},[1625,1627,1633],{"type":51,"value":1626},"See ",{"type":45,"tag":64,"props":1628,"children":1630},{"className":1629},[],[1631],{"type":51,"value":1632},"twilio-content-template-builder",{"type":51,"value":1634}," for building templates.",{"type":45,"tag":1502,"props":1636,"children":1638},{"id":1637},"track-delivery-status",[1639],{"type":51,"value":1640},"Track delivery status",{"type":45,"tag":427,"props":1642,"children":1644},{"className":429,"code":1643,"language":431,"meta":432,"style":432},"client.messages.create(\n    messaging_service_sid=\"MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    to=\"+15558675310\",\n    body=\"Hello!\",\n    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fstatus\"\n)\n",[1645],{"type":45,"tag":64,"props":1646,"children":1647},{"__ignoreMap":432},[1648,1655,1662,1669,1677,1685],{"type":45,"tag":438,"props":1649,"children":1650},{"class":440,"line":441},[1651],{"type":45,"tag":438,"props":1652,"children":1653},{},[1654],{"type":51,"value":1522},{"type":45,"tag":438,"props":1656,"children":1657},{"class":440,"line":450},[1658],{"type":45,"tag":438,"props":1659,"children":1660},{},[1661],{"type":51,"value":572},{"type":45,"tag":438,"props":1663,"children":1664},{"class":440,"line":459},[1665],{"type":45,"tag":438,"props":1666,"children":1667},{},[1668],{"type":51,"value":519},{"type":45,"tag":438,"props":1670,"children":1671},{"class":440,"line":469},[1672],{"type":45,"tag":438,"props":1673,"children":1674},{},[1675],{"type":51,"value":1676},"    body=\"Hello!\",\n",{"type":45,"tag":438,"props":1678,"children":1679},{"class":440,"line":478},[1680],{"type":45,"tag":438,"props":1681,"children":1682},{},[1683],{"type":51,"value":1684},"    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fstatus\"\n",{"type":45,"tag":438,"props":1686,"children":1687},{"class":440,"line":486},[1688],{"type":45,"tag":438,"props":1689,"children":1690},{},[1691],{"type":51,"value":537},{"type":45,"tag":54,"props":1693,"children":1694},{},[1695,1697,1703,1705,1711,1713,1719],{"type":51,"value":1696},"Twilio POSTs at each state transition: ",{"type":45,"tag":64,"props":1698,"children":1700},{"className":1699},[],[1701],{"type":51,"value":1702},"queued → sent → delivered",{"type":51,"value":1704}," (or ",{"type":45,"tag":64,"props":1706,"children":1708},{"className":1707},[],[1709],{"type":51,"value":1710},"failed",{"type":51,"value":1712},"\u002F",{"type":45,"tag":64,"props":1714,"children":1716},{"className":1715},[],[1717],{"type":51,"value":1718},"undelivered",{"type":51,"value":1720},").",{"type":45,"tag":1502,"props":1722,"children":1724},{"id":1723},"configure-rcssms-fallback",[1725],{"type":51,"value":1726},"Configure RCS→SMS fallback",{"type":45,"tag":54,"props":1728,"children":1729},{},[1730,1732,1737,1738,1743],{"type":51,"value":1731},"Configured on the Messaging Service, not per-message. Add both an RCS sender and an SMS sender to the same Messaging Service. Twilio attempts RCS first and falls back to SMS on failure. See ",{"type":45,"tag":64,"props":1733,"children":1735},{"className":1734},[],[1736],{"type":51,"value":282},{"type":51,"value":81},{"type":45,"tag":64,"props":1739,"children":1741},{"className":1740},[],[1742],{"type":51,"value":386},{"type":51,"value":89},{"type":45,"tag":285,"props":1745,"children":1746},{},[],{"type":45,"tag":46,"props":1748,"children":1750},{"id":1749},"common-errors",[1751],{"type":51,"value":1752},"Common Errors",{"type":45,"tag":91,"props":1754,"children":1755},{},[1756,1777],{"type":45,"tag":95,"props":1757,"children":1758},{},[1759],{"type":45,"tag":99,"props":1760,"children":1761},{},[1762,1767,1772],{"type":45,"tag":103,"props":1763,"children":1764},{},[1765],{"type":51,"value":1766},"Code",{"type":45,"tag":103,"props":1768,"children":1769},{},[1770],{"type":51,"value":1771},"Meaning",{"type":45,"tag":103,"props":1773,"children":1774},{},[1775],{"type":51,"value":1776},"Fix",{"type":45,"tag":130,"props":1778,"children":1779},{},[1780,1805,1823,1841,1885,1914,1937,1955,1973,1997,2015],{"type":45,"tag":99,"props":1781,"children":1782},{},[1783,1788,1800],{"type":45,"tag":137,"props":1784,"children":1785},{},[1786],{"type":51,"value":1787},"21211",{"type":45,"tag":137,"props":1789,"children":1790},{},[1791,1793,1798],{"type":51,"value":1792},"Invalid ",{"type":45,"tag":64,"props":1794,"children":1796},{"className":1795},[],[1797],{"type":51,"value":116},{"type":51,"value":1799}," number",{"type":45,"tag":137,"props":1801,"children":1802},{},[1803],{"type":51,"value":1804},"Validate E.164 format",{"type":45,"tag":99,"props":1806,"children":1807},{},[1808,1813,1818],{"type":45,"tag":137,"props":1809,"children":1810},{},[1811],{"type":51,"value":1812},"21408",{"type":45,"tag":137,"props":1814,"children":1815},{},[1816],{"type":51,"value":1817},"Region not permitted",{"type":45,"tag":137,"props":1819,"children":1820},{},[1821],{"type":51,"value":1822},"Enable geo-permissions in Console",{"type":45,"tag":99,"props":1824,"children":1825},{},[1826,1831,1836],{"type":45,"tag":137,"props":1827,"children":1828},{},[1829],{"type":51,"value":1830},"21610",{"type":45,"tag":137,"props":1832,"children":1833},{},[1834],{"type":51,"value":1835},"Recipient opted out",{"type":45,"tag":137,"props":1837,"children":1838},{},[1839],{"type":51,"value":1840},"Do not retry; respect opt-out",{"type":45,"tag":99,"props":1842,"children":1843},{},[1844,1849,1868],{"type":45,"tag":137,"props":1845,"children":1846},{},[1847],{"type":51,"value":1848},"21664",{"type":45,"tag":137,"props":1850,"children":1851},{},[1852,1858,1860,1866],{"type":45,"tag":64,"props":1853,"children":1855},{"className":1854},[],[1856],{"type":51,"value":1857},"FallbackFrom",{"type":51,"value":1859}," cannot be used with ",{"type":45,"tag":64,"props":1861,"children":1863},{"className":1862},[],[1864],{"type":51,"value":1865},"From",{"type":51,"value":1867}," sender",{"type":45,"tag":137,"props":1869,"children":1870},{},[1871,1873,1879,1880],{"type":51,"value":1872},"Use ",{"type":45,"tag":64,"props":1874,"children":1876},{"className":1875},[],[1877],{"type":51,"value":1878},"messaging_service_sid",{"type":51,"value":269},{"type":45,"tag":64,"props":1881,"children":1883},{"className":1882},[],[1884],{"type":51,"value":246},{"type":45,"tag":99,"props":1886,"children":1887},{},[1888,1893,1909],{"type":45,"tag":137,"props":1889,"children":1890},{},[1891],{"type":51,"value":1892},"21666",{"type":45,"tag":137,"props":1894,"children":1895},{},[1896,1901,1903],{"type":45,"tag":64,"props":1897,"children":1899},{"className":1898},[],[1900],{"type":51,"value":1857},{"type":51,"value":1902}," requires ",{"type":45,"tag":64,"props":1904,"children":1906},{"className":1905},[],[1907],{"type":51,"value":1908},"MessagingServiceSid",{"type":45,"tag":137,"props":1910,"children":1911},{},[1912],{"type":51,"value":1913},"Send via a Messaging Service",{"type":45,"tag":99,"props":1915,"children":1916},{},[1917,1922,1932],{"type":45,"tag":137,"props":1918,"children":1919},{},[1920],{"type":51,"value":1921},"21667",{"type":45,"tag":137,"props":1923,"children":1924},{},[1925,1930],{"type":45,"tag":64,"props":1926,"children":1928},{"className":1927},[],[1929],{"type":51,"value":1857},{"type":51,"value":1931}," requires an RCS Sender on the Messaging Service",{"type":45,"tag":137,"props":1933,"children":1934},{},[1935],{"type":51,"value":1936},"Add an RCS sender before configuring fallback",{"type":45,"tag":99,"props":1938,"children":1939},{},[1940,1945,1950],{"type":45,"tag":137,"props":1941,"children":1942},{},[1943],{"type":51,"value":1944},"30003",{"type":45,"tag":137,"props":1946,"children":1947},{},[1948],{"type":51,"value":1949},"Unreachable destination",{"type":45,"tag":137,"props":1951,"children":1952},{},[1953],{"type":51,"value":1954},"Carrier cannot deliver",{"type":45,"tag":99,"props":1956,"children":1957},{},[1958,1963,1968],{"type":45,"tag":137,"props":1959,"children":1960},{},[1961],{"type":51,"value":1962},"30007",{"type":45,"tag":137,"props":1964,"children":1965},{},[1966],{"type":51,"value":1967},"Message filtered as spam",{"type":45,"tag":137,"props":1969,"children":1970},{},[1971],{"type":51,"value":1972},"Review content and sender reputation",{"type":45,"tag":99,"props":1974,"children":1975},{},[1976,1981,1986],{"type":45,"tag":137,"props":1977,"children":1978},{},[1979],{"type":51,"value":1980},"30034",{"type":45,"tag":137,"props":1982,"children":1983},{},[1984],{"type":51,"value":1985},"US A2P 10DLC — sender not registered",{"type":45,"tag":137,"props":1987,"children":1988},{},[1989,1991],{"type":51,"value":1990},"Register brand + campaign. See ",{"type":45,"tag":64,"props":1992,"children":1994},{"className":1993},[],[1995],{"type":51,"value":1996},"twilio-compliance-onboarding",{"type":45,"tag":99,"props":1998,"children":1999},{},[2000,2005,2010],{"type":45,"tag":137,"props":2001,"children":2002},{},[2003],{"type":51,"value":2004},"30036",{"type":45,"tag":137,"props":2006,"children":2007},{},[2008],{"type":51,"value":2009},"Validity Period expired",{"type":45,"tag":137,"props":2011,"children":2012},{},[2013],{"type":51,"value":2014},"Message aged out. Often indicates RCS fallback is misconfigured",{"type":45,"tag":99,"props":2016,"children":2017},{},[2018,2023,2028],{"type":45,"tag":137,"props":2019,"children":2020},{},[2021],{"type":51,"value":2022},"63036",{"type":45,"tag":137,"props":2024,"children":2025},{},[2026],{"type":51,"value":2027},"RCS recipient unreachable",{"type":45,"tag":137,"props":2029,"children":2030},{},[2031],{"type":51,"value":2032},"Configure SMS fallback on the Messaging Service",{"type":45,"tag":285,"props":2034,"children":2035},{},[],{"type":45,"tag":46,"props":2037,"children":2039},{"id":2038},"cannot",[2040],{"type":51,"value":2041},"CANNOT",{"type":45,"tag":295,"props":2043,"children":2044},{},[2045,2062,2086,2096,2119],{"type":45,"tag":299,"props":2046,"children":2047},{},[2048,2053,2055,2060],{"type":45,"tag":58,"props":2049,"children":2050},{},[2051],{"type":51,"value":2052},"Cannot send cross-channel in a single API call.",{"type":51,"value":2054}," One ",{"type":45,"tag":64,"props":2056,"children":2058},{"className":2057},[],[2059],{"type":51,"value":69},{"type":51,"value":2061}," = one channel. For multi-channel fallback, use RCS→SMS via a Messaging Service, or implement sequencing in your app.",{"type":45,"tag":299,"props":2063,"children":2064},{},[2065,2070,2072,2078,2080,2085],{"type":45,"tag":58,"props":2066,"children":2067},{},[2068],{"type":51,"value":2069},"Cannot send WhatsApp free-form outside the 24-hour service window.",{"type":51,"value":2071}," Use a pre-approved template (",{"type":45,"tag":64,"props":2073,"children":2075},{"className":2074},[],[2076],{"type":51,"value":2077},"content_sid",{"type":51,"value":2079},"). See ",{"type":45,"tag":64,"props":2081,"children":2083},{"className":2082},[],[2084],{"type":51,"value":398},{"type":51,"value":89},{"type":45,"tag":299,"props":2087,"children":2088},{},[2089,2094],{"type":45,"tag":58,"props":2090,"children":2091},{},[2092],{"type":51,"value":2093},"Cannot send MMS outside US\u002FCanada.",{"type":51,"value":2095}," For international rich media, use WhatsApp or RCS.",{"type":45,"tag":299,"props":2097,"children":2098},{},[2099,2104,2106,2111,2113,2118],{"type":45,"tag":58,"props":2100,"children":2101},{},[2102],{"type":51,"value":2103},"Cannot configure RCS→SMS fallback without a Messaging Service.",{"type":51,"value":2105}," Raw ",{"type":45,"tag":64,"props":2107,"children":2109},{"className":2108},[],[2110],{"type":51,"value":246},{"type":51,"value":2112}," sends don't support ",{"type":45,"tag":64,"props":2114,"children":2116},{"className":2115},[],[2117],{"type":51,"value":1857},{"type":51,"value":89},{"type":45,"tag":299,"props":2120,"children":2121},{},[2122,2127],{"type":45,"tag":58,"props":2123,"children":2124},{},[2125],{"type":51,"value":2126},"Cannot guarantee delivery on any channel.",{"type":51,"value":2128}," Always implement status callbacks.",{"type":45,"tag":285,"props":2130,"children":2131},{},[],{"type":45,"tag":46,"props":2133,"children":2135},{"id":2134},"next-steps",[2136],{"type":51,"value":2137},"Next Steps",{"type":45,"tag":295,"props":2139,"children":2140},{},[2141,2156,2170,2197,2211,2225,2240,2254],{"type":45,"tag":299,"props":2142,"children":2143},{},[2144,2149,2151],{"type":45,"tag":58,"props":2145,"children":2146},{},[2147],{"type":51,"value":2148},"Pick a channel for your use case:",{"type":51,"value":2150}," ",{"type":45,"tag":64,"props":2152,"children":2154},{"className":2153},[],[2155],{"type":51,"value":87},{"type":45,"tag":299,"props":2157,"children":2158},{},[2159,2164,2165],{"type":45,"tag":58,"props":2160,"children":2161},{},[2162],{"type":51,"value":2163},"Full messaging platform overview:",{"type":51,"value":2150},{"type":45,"tag":64,"props":2166,"children":2168},{"className":2167},[],[2169],{"type":51,"value":79},{"type":45,"tag":299,"props":2171,"children":2172},{},[2173,2178,2179,2185,2186,2191,2192],{"type":45,"tag":58,"props":2174,"children":2175},{},[2176],{"type":51,"value":2177},"Channel-specific deep dives:",{"type":51,"value":2150},{"type":45,"tag":64,"props":2180,"children":2182},{"className":2181},[],[2183],{"type":51,"value":2184},"twilio-sms-send-message",{"type":51,"value":322},{"type":45,"tag":64,"props":2187,"children":2189},{"className":2188},[],[2190],{"type":51,"value":386},{"type":51,"value":322},{"type":45,"tag":64,"props":2193,"children":2195},{"className":2194},[],[2196],{"type":51,"value":398},{"type":45,"tag":299,"props":2198,"children":2199},{},[2200,2205,2206],{"type":45,"tag":58,"props":2201,"children":2202},{},[2203],{"type":51,"value":2204},"Sender pools, fallback, production features:",{"type":51,"value":2150},{"type":45,"tag":64,"props":2207,"children":2209},{"className":2208},[],[2210],{"type":51,"value":282},{"type":45,"tag":299,"props":2212,"children":2213},{},[2214,2219,2220],{"type":45,"tag":58,"props":2215,"children":2216},{},[2217],{"type":51,"value":2218},"Build templates (cards, carousels, quick replies):",{"type":51,"value":2150},{"type":45,"tag":64,"props":2221,"children":2223},{"className":2222},[],[2224],{"type":51,"value":1632},{"type":45,"tag":299,"props":2226,"children":2227},{},[2228,2233,2234],{"type":45,"tag":58,"props":2229,"children":2230},{},[2231],{"type":51,"value":2232},"Handle inbound messages and status callbacks:",{"type":51,"value":2150},{"type":45,"tag":64,"props":2235,"children":2237},{"className":2236},[],[2238],{"type":51,"value":2239},"twilio-messaging-webhooks",{"type":45,"tag":299,"props":2241,"children":2242},{},[2243,2248,2249],{"type":45,"tag":58,"props":2244,"children":2245},{},[2246],{"type":51,"value":2247},"US A2P 10DLC compliance:",{"type":51,"value":2150},{"type":45,"tag":64,"props":2250,"children":2252},{"className":2251},[],[2253],{"type":51,"value":1996},{"type":45,"tag":299,"props":2255,"children":2256},{},[2257,2262,2263],{"type":45,"tag":58,"props":2258,"children":2259},{},[2260],{"type":51,"value":2261},"OTP \u002F verification use cases:",{"type":51,"value":2150},{"type":45,"tag":64,"props":2264,"children":2266},{"className":2265},[],[2267],{"type":51,"value":2268},"twilio-verify-send-otp",{"type":45,"tag":2270,"props":2271,"children":2272},"style",{},[2273],{"type":51,"value":2274},"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":2276,"total":2397},[2277,2295,2311,2323,2343,2365,2385],{"slug":2278,"name":2278,"fn":2279,"description":2280,"org":2281,"tags":2282,"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},[2283,2286,2289,2292],{"name":2284,"slug":2285,"type":15},"Accessibility","accessibility",{"name":2287,"slug":2288,"type":15},"Charts","charts",{"name":2290,"slug":2291,"type":15},"Data Visualization","data-visualization",{"name":2293,"slug":2294,"type":15},"Design","design",{"slug":2296,"name":2296,"fn":2297,"description":2298,"org":2299,"tags":2300,"stars":28,"repoUrl":29,"updatedAt":2310},"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},[2301,2304,2307],{"name":2302,"slug":2303,"type":15},"Agents","agents",{"name":2305,"slug":2306,"type":15},"Browser Automation","browser-automation",{"name":2308,"slug":2309,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2312,"name":2312,"fn":2313,"description":2314,"org":2315,"tags":2316,"stars":28,"repoUrl":29,"updatedAt":2322},"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},[2317,2318,2321],{"name":2305,"slug":2306,"type":15},{"name":2319,"slug":2320,"type":15},"Local Development","local-development",{"name":2308,"slug":2309,"type":15},"2026-04-06T18:41:17.526867",{"slug":2324,"name":2324,"fn":2325,"description":2326,"org":2327,"tags":2328,"stars":28,"repoUrl":29,"updatedAt":2342},"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},[2329,2330,2333,2336,2339],{"name":2302,"slug":2303,"type":15},{"name":2331,"slug":2332,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2334,"slug":2335,"type":15},"SDK","sdk",{"name":2337,"slug":2338,"type":15},"Serverless","serverless",{"name":2340,"slug":2341,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2344,"name":2344,"fn":2345,"description":2346,"org":2347,"tags":2348,"stars":28,"repoUrl":29,"updatedAt":2364},"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},[2349,2352,2355,2358,2361],{"name":2350,"slug":2351,"type":15},"Frontend","frontend",{"name":2353,"slug":2354,"type":15},"React","react",{"name":2356,"slug":2357,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2359,"slug":2360,"type":15},"UI Components","ui-components",{"name":2362,"slug":2363,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2366,"name":2366,"fn":2367,"description":2368,"org":2369,"tags":2370,"stars":28,"repoUrl":29,"updatedAt":2384},"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},[2371,2374,2377,2380,2383],{"name":2372,"slug":2373,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2375,"slug":2376,"type":15},"Cost Optimization","cost-optimization",{"name":2378,"slug":2379,"type":15},"LLM","llm",{"name":2381,"slug":2382,"type":15},"Performance","performance",{"name":2362,"slug":2363,"type":15},"2026-04-06T18:40:44.377464",{"slug":2386,"name":2386,"fn":2387,"description":2388,"org":2389,"tags":2390,"stars":28,"repoUrl":29,"updatedAt":2396},"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},[2391,2392,2395],{"name":2375,"slug":2376,"type":15},{"name":2393,"slug":2394,"type":15},"Database","database",{"name":2378,"slug":2379,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2399,"total":2596},[2400,2421,2444,2461,2477,2494,2513,2525,2539,2553,2565,2580],{"slug":2401,"name":2401,"fn":2402,"description":2403,"org":2404,"tags":2405,"stars":2418,"repoUrl":2419,"updatedAt":2420},"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},[2406,2409,2412,2415],{"name":2407,"slug":2408,"type":15},"Documents","documents",{"name":2410,"slug":2411,"type":15},"Healthcare","healthcare",{"name":2413,"slug":2414,"type":15},"Insurance","insurance",{"name":2416,"slug":2417,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2422,"name":2422,"fn":2423,"description":2424,"org":2425,"tags":2426,"stars":2441,"repoUrl":2442,"updatedAt":2443},"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},[2427,2430,2432,2435,2438],{"name":2428,"slug":2429,"type":15},".NET","dotnet",{"name":2431,"slug":2422,"type":15},"ASP.NET Core",{"name":2433,"slug":2434,"type":15},"Blazor","blazor",{"name":2436,"slug":2437,"type":15},"C#","csharp",{"name":2439,"slug":2440,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2445,"name":2445,"fn":2446,"description":2447,"org":2448,"tags":2449,"stars":2441,"repoUrl":2442,"updatedAt":2460},"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},[2450,2453,2456,2459],{"name":2451,"slug":2452,"type":15},"Apps SDK","apps-sdk",{"name":2454,"slug":2455,"type":15},"ChatGPT","chatgpt",{"name":2457,"slug":2458,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2462,"name":2462,"fn":2463,"description":2464,"org":2465,"tags":2466,"stars":2441,"repoUrl":2442,"updatedAt":2476},"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},[2467,2470,2473],{"name":2468,"slug":2469,"type":15},"API Development","api-development",{"name":2471,"slug":2472,"type":15},"CLI","cli",{"name":2474,"slug":2475,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2478,"name":2478,"fn":2479,"description":2480,"org":2481,"tags":2482,"stars":2441,"repoUrl":2442,"updatedAt":2493},"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},[2483,2486,2489,2490],{"name":2484,"slug":2485,"type":15},"Cloudflare","cloudflare",{"name":2487,"slug":2488,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2331,"slug":2332,"type":15},{"name":2491,"slug":2492,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2495,"name":2495,"fn":2496,"description":2497,"org":2498,"tags":2499,"stars":2441,"repoUrl":2442,"updatedAt":2512},"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},[2500,2503,2506,2509],{"name":2501,"slug":2502,"type":15},"Productivity","productivity",{"name":2504,"slug":2505,"type":15},"Project Management","project-management",{"name":2507,"slug":2508,"type":15},"Strategy","strategy",{"name":2510,"slug":2511,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2514,"name":2514,"fn":2515,"description":2516,"org":2517,"tags":2518,"stars":2441,"repoUrl":2442,"updatedAt":2524},"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},[2519,2520,2522,2523],{"name":2293,"slug":2294,"type":15},{"name":2521,"slug":2514,"type":15},"Figma",{"name":2350,"slug":2351,"type":15},{"name":2457,"slug":2458,"type":15},"2026-04-12T05:06:47.939943",{"slug":2526,"name":2526,"fn":2527,"description":2528,"org":2529,"tags":2530,"stars":2441,"repoUrl":2442,"updatedAt":2538},"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},[2531,2532,2535,2536,2537],{"name":2293,"slug":2294,"type":15},{"name":2533,"slug":2534,"type":15},"Design System","design-system",{"name":2521,"slug":2514,"type":15},{"name":2350,"slug":2351,"type":15},{"name":2359,"slug":2360,"type":15},"2026-05-10T05:59:52.971881",{"slug":2540,"name":2540,"fn":2541,"description":2542,"org":2543,"tags":2544,"stars":2441,"repoUrl":2442,"updatedAt":2552},"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},[2545,2546,2547,2550,2551],{"name":2293,"slug":2294,"type":15},{"name":2533,"slug":2534,"type":15},{"name":2548,"slug":2549,"type":15},"Documentation","documentation",{"name":2521,"slug":2514,"type":15},{"name":2350,"slug":2351,"type":15},"2026-05-16T06:07:47.821474",{"slug":2554,"name":2554,"fn":2555,"description":2556,"org":2557,"tags":2558,"stars":2441,"repoUrl":2442,"updatedAt":2564},"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},[2559,2560,2561,2562,2563],{"name":2293,"slug":2294,"type":15},{"name":2521,"slug":2514,"type":15},{"name":2350,"slug":2351,"type":15},{"name":2359,"slug":2360,"type":15},{"name":2439,"slug":2440,"type":15},"2026-05-16T06:07:40.583615",{"slug":2566,"name":2566,"fn":2567,"description":2568,"org":2569,"tags":2570,"stars":2441,"repoUrl":2442,"updatedAt":2579},"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},[2571,2574,2575,2578],{"name":2572,"slug":2573,"type":15},"Animation","animation",{"name":2474,"slug":2475,"type":15},{"name":2576,"slug":2577,"type":15},"Creative","creative",{"name":2293,"slug":2294,"type":15},"2026-05-02T05:31:48.48485",{"slug":2581,"name":2581,"fn":2582,"description":2583,"org":2584,"tags":2585,"stars":2441,"repoUrl":2442,"updatedAt":2595},"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},[2586,2587,2588,2591,2594],{"name":2576,"slug":2577,"type":15},{"name":2293,"slug":2294,"type":15},{"name":2589,"slug":2590,"type":15},"Image Generation","image-generation",{"name":2592,"slug":2593,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]