[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-whatsapp-manage-senders":3,"mdc-88gps2-key":33,"related-repo-twilio-twilio-whatsapp-manage-senders":1306,"related-org-twilio-twilio-whatsapp-manage-senders":1409},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"twilio-whatsapp-manage-senders","manage WhatsApp Business senders via Twilio","Create, configure, and manage WhatsApp Business senders via Twilio's Channels Senders API. Covers programmatic sender registration, profile setup, webhook configuration, sender lifecycle statuses, and ISV flows. Use this skill to register and manage production WhatsApp senders at scale.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"twilio","Twilio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftwilio.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Operations","operations","tag",{"name":17,"slug":18,"type":15},"WhatsApp","whatsapp",{"name":20,"slug":21,"type":15},"Messaging","messaging",{"name":9,"slug":8,"type":15},25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:04:25.618006",null,7,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\u002Ftwilio-whatsapp-manage-senders","---\nname: twilio-whatsapp-manage-senders\ndescription: >\n  Create, configure, and manage WhatsApp Business senders via Twilio's\n  Channels Senders API. Covers programmatic sender registration, profile setup,\n  webhook configuration, sender lifecycle statuses, and ISV flows. Use this\n  skill to register and manage production WhatsApp senders at scale.\n---\n\n## Overview\n\nA WhatsApp sender is a phone number registered with WhatsApp Business through Twilio. Registration goes through a lifecycle of statuses before becoming `ONLINE`. Sandbox testing does not require a registered sender — see `twilio-whatsapp-send-message`.\n\n---\n\n## Prerequisites\n\n- Upgraded Twilio account (trial accounts cannot register production senders)\n  — See `twilio-account-setup` for signup and upgrade steps\n- A phone number capable of receiving SMS or voice verification\n- Number must not already be registered with WhatsApp\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\n# Step 1: Initiate registration\nsender = client.messaging.v2.channels.senders.create(\n    sender_id=\"whatsapp:+15017122661\",\n    verification_method=\"sms\"\n)\nprint(sender.sid)     # XExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nprint(sender.status)  # CREATING\n\n# Step 2: Submit the OTP Twilio sends to the number\nsender = client.messaging.v2.channels.senders(sender.sid).update(\n    verification_code=\"123456\"\n)\nprint(sender.status)  # ONLINE (may pass through TWILIO_REVIEW first)\n```\n\n**Node.js**\n```node\nconst twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F Step 1: Initiate registration\nconst sender = await client.messaging.v2.channels.senders.create({\n    senderId: \"whatsapp:+15017122661\",\n    verificationMethod: \"sms\",\n});\nconsole.log(sender.sid, sender.status);\n\n\u002F\u002F Step 2: Submit the OTP\nconst verified = await client.messaging.v2.channels.senders(sender.sid).update({\n    verificationCode: \"123456\",\n});\nconsole.log(verified.status);\n```\n\n---\n\n## Sender Lifecycle Statuses\n\n| Status | Meaning |\n|--------|---------|\n| `CREATING` | Registration initiated |\n| `PENDING_VERIFICATION` | Awaiting OTP submission |\n| `VERIFYING` | OTP being validated |\n| `TWILIO_REVIEW` | Under Twilio\u002FMeta review |\n| `ONLINE` | Active and ready to send |\n| `OFFLINE` | Inactive — check `offlineReasons` |\n| `DRAFT` | Incomplete registration |\n\n---\n\n## Key Patterns\n\n### Set Business Profile\n\n**Python**\n```python\nsender = client.messaging.v2.channels.senders(SENDER_SID).update(\n    profile_name=\"Acme Support\",\n    profile_about=\"Official support channel for Acme Corp\",\n    profile_address=\"123 Main St, San Francisco, CA\",\n    profile_vertical=\"PROFESSIONAL_SERVICES\",\n    profile_logo_url=\"https:\u002F\u002Facme.com\u002Flogo.png\",\n    profile_websites=[\"https:\u002F\u002Facme.com\"]\n)\n```\n\n**Node.js**\n```node\nconst sender = await client.messaging.v2.channels.senders(SENDER_SID).update({\n    profileName: \"Acme Support\",\n    profileAbout: \"Official support channel for Acme Corp\",\n    profileAddress: \"123 Main St, San Francisco, CA\",\n    profileVertical: \"PROFESSIONAL_SERVICES\",\n    profileLogoUrl: \"https:\u002F\u002Facme.com\u002Flogo.png\",\n    profileWebsites: [\"https:\u002F\u002Facme.com\"],\n});\n```\n\n### Configure Webhooks\n\n**Python**\n```python\nsender = client.messaging.v2.channels.senders(SENDER_SID).update(\n    callback_url=\"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Finbound\",\n    callback_method=\"POST\",\n    status_callback_url=\"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Fstatus\"\n)\n```\n\n**Node.js**\n```node\nawait client.messaging.v2.channels.senders(SENDER_SID).update({\n    callbackUrl: \"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Finbound\",\n    callbackMethod: \"POST\",\n    statusCallbackUrl: \"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Fstatus\",\n});\n```\n\n### Retrieve and List Senders\n\n**Python**\n```python\nsender = client.messaging.v2.channels.senders(SENDER_SID).fetch()\nprint(sender.status)\n\nfor s in client.messaging.v2.channels.senders.list():\n    print(s.sid, s.status)\n```\n\n**Node.js**\n```node\nconst sender = await client.messaging.v2.channels.senders(SENDER_SID).fetch();\nconst senders = await client.messaging.v2.channels.senders.list();\nsenders.forEach(s => console.log(s.sid, s.status));\n```\n\nIf a sender is `OFFLINE`, check the `offlineReasons` array in the response (e.g. code `63020` means business hasn't accepted Twilio's Meta invitation).\n\n### Migrate an Existing WhatsApp Number\n\nIf a number is already registered on WhatsApp (personal or business):\n1. Check: `https:\u002F\u002Fwa.me\u002F\u003CPHONE_NUMBER>?text=hi`\n2. Delete the existing WhatsApp account on the device, or disable 2FA on the competing platform\n3. Proceed with registration above\n\n### ISV \u002F Tech Provider Flow\n\nRegister senders under a client's WhatsApp Business Account (WABA):\n\n**Python**\n```python\nsender = client.messaging.v2.channels.senders.create(\n    sender_id=\"whatsapp:+15017122661\",\n    waba_id=\"client-waba-id\"\n)\n```\n\n**Node.js**\n```node\nconst sender = await client.messaging.v2.channels.senders.create({\n    senderId: \"whatsapp:+15017122661\",\n    wabaId: \"client-waba-id\",\n});\n```\n\nThe client must accept Twilio's invitation in their Meta Business Manager.\n\n---\n\n## CANNOT\n\n- **Cannot register a phone number to multiple WABAs** — Each number belongs to one WABA at a time\n- **Cannot exceed 2 senders without Meta Business Verification** — Unverified accounts are limited to 2\n- **Cannot exceed 20 senders without exception** — Verified Meta Business Manager: max 20 (50 with exception request)\n- **Cannot verify phone number only via SMS** — Voice verification is available if SMS cannot be received\n\n---\n\n## Next Steps\n\n- **Send WhatsApp messages with this sender:** `twilio-whatsapp-send-message`\n- **Create message templates:** `twilio-content-template-builder`\n- **Send WhatsApp OTPs:** `twilio-verify-send-otp`\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,70,74,80,163,166,172,181,353,361,487,490,496,648,651,657,664,671,741,748,818,824,831,876,883,929,935,942,988,995,1026,1053,1059,1064,1089,1095,1100,1107,1143,1150,1186,1191,1194,1200,1243,1246,1252,1300],{"type":39,"tag":40,"props":41,"children":43},"element","h2",{"id":42},"overview",[44],{"type":45,"value":46},"text","Overview",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51,53,60,62,68],{"type":45,"value":52},"A WhatsApp sender is a phone number registered with WhatsApp Business through Twilio. Registration goes through a lifecycle of statuses before becoming ",{"type":39,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"ONLINE",{"type":45,"value":61},". Sandbox testing does not require a registered sender — see ",{"type":39,"tag":54,"props":63,"children":65},{"className":64},[],[66],{"type":45,"value":67},"twilio-whatsapp-send-message",{"type":45,"value":69},".",{"type":39,"tag":71,"props":72,"children":73},"hr",{},[],{"type":39,"tag":40,"props":75,"children":77},{"id":76},"prerequisites",[78],{"type":45,"value":79},"Prerequisites",{"type":39,"tag":81,"props":82,"children":83},"ul",{},[84,98,103,108,144],{"type":39,"tag":85,"props":86,"children":87},"li",{},[88,90,96],{"type":45,"value":89},"Upgraded Twilio account (trial accounts cannot register production senders)\n— See ",{"type":39,"tag":54,"props":91,"children":93},{"className":92},[],[94],{"type":45,"value":95},"twilio-account-setup",{"type":45,"value":97}," for signup and upgrade steps",{"type":39,"tag":85,"props":99,"children":100},{},[101],{"type":45,"value":102},"A phone number capable of receiving SMS or voice verification",{"type":39,"tag":85,"props":104,"children":105},{},[106],{"type":45,"value":107},"Number must not already be registered with WhatsApp",{"type":39,"tag":85,"props":109,"children":110},{},[111,113],{"type":45,"value":112},"Environment variables:\n",{"type":39,"tag":81,"props":114,"children":115},{},[116,125],{"type":39,"tag":85,"props":117,"children":118},{},[119],{"type":39,"tag":54,"props":120,"children":122},{"className":121},[],[123],{"type":45,"value":124},"TWILIO_ACCOUNT_SID",{"type":39,"tag":85,"props":126,"children":127},{},[128,134,136,142],{"type":39,"tag":54,"props":129,"children":131},{"className":130},[],[132],{"type":45,"value":133},"TWILIO_AUTH_TOKEN",{"type":45,"value":135},"\n— See ",{"type":39,"tag":54,"props":137,"children":139},{"className":138},[],[140],{"type":45,"value":141},"twilio-iam-auth-setup",{"type":45,"value":143}," for credential setup and best practices",{"type":39,"tag":85,"props":145,"children":146},{},[147,149,155,157],{"type":45,"value":148},"SDK: ",{"type":39,"tag":54,"props":150,"children":152},{"className":151},[],[153],{"type":45,"value":154},"pip install twilio",{"type":45,"value":156}," \u002F ",{"type":39,"tag":54,"props":158,"children":160},{"className":159},[],[161],{"type":45,"value":162},"npm install twilio",{"type":39,"tag":71,"props":164,"children":165},{},[],{"type":39,"tag":40,"props":167,"children":169},{"id":168},"quickstart",[170],{"type":45,"value":171},"Quickstart",{"type":39,"tag":48,"props":173,"children":174},{},[175],{"type":39,"tag":176,"props":177,"children":178},"strong",{},[179],{"type":45,"value":180},"Python",{"type":39,"tag":182,"props":183,"children":188},"pre",{"className":184,"code":185,"language":186,"meta":187,"style":187},"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# Step 1: Initiate registration\nsender = client.messaging.v2.channels.senders.create(\n    sender_id=\"whatsapp:+15017122661\",\n    verification_method=\"sms\"\n)\nprint(sender.sid)     # XExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nprint(sender.status)  # CREATING\n\n# Step 2: Submit the OTP Twilio sends to the number\nsender = client.messaging.v2.channels.senders(sender.sid).update(\n    verification_code=\"123456\"\n)\nprint(sender.status)  # ONLINE (may pass through TWILIO_REVIEW first)\n","python","",[189],{"type":39,"tag":54,"props":190,"children":191},{"__ignoreMap":187},[192,203,212,222,231,239,248,256,265,274,283,292,301,309,318,327,336,344],{"type":39,"tag":193,"props":194,"children":197},"span",{"class":195,"line":196},"line",1,[198],{"type":39,"tag":193,"props":199,"children":200},{},[201],{"type":45,"value":202},"import os\n",{"type":39,"tag":193,"props":204,"children":206},{"class":195,"line":205},2,[207],{"type":39,"tag":193,"props":208,"children":209},{},[210],{"type":45,"value":211},"from twilio.rest import Client\n",{"type":39,"tag":193,"props":213,"children":215},{"class":195,"line":214},3,[216],{"type":39,"tag":193,"props":217,"children":219},{"emptyLinePlaceholder":218},true,[220],{"type":45,"value":221},"\n",{"type":39,"tag":193,"props":223,"children":225},{"class":195,"line":224},4,[226],{"type":39,"tag":193,"props":227,"children":228},{},[229],{"type":45,"value":230},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":39,"tag":193,"props":232,"children":234},{"class":195,"line":233},5,[235],{"type":39,"tag":193,"props":236,"children":237},{"emptyLinePlaceholder":218},[238],{"type":45,"value":221},{"type":39,"tag":193,"props":240,"children":242},{"class":195,"line":241},6,[243],{"type":39,"tag":193,"props":244,"children":245},{},[246],{"type":45,"value":247},"# Step 1: Initiate registration\n",{"type":39,"tag":193,"props":249,"children":250},{"class":195,"line":27},[251],{"type":39,"tag":193,"props":252,"children":253},{},[254],{"type":45,"value":255},"sender = client.messaging.v2.channels.senders.create(\n",{"type":39,"tag":193,"props":257,"children":259},{"class":195,"line":258},8,[260],{"type":39,"tag":193,"props":261,"children":262},{},[263],{"type":45,"value":264},"    sender_id=\"whatsapp:+15017122661\",\n",{"type":39,"tag":193,"props":266,"children":268},{"class":195,"line":267},9,[269],{"type":39,"tag":193,"props":270,"children":271},{},[272],{"type":45,"value":273},"    verification_method=\"sms\"\n",{"type":39,"tag":193,"props":275,"children":277},{"class":195,"line":276},10,[278],{"type":39,"tag":193,"props":279,"children":280},{},[281],{"type":45,"value":282},")\n",{"type":39,"tag":193,"props":284,"children":286},{"class":195,"line":285},11,[287],{"type":39,"tag":193,"props":288,"children":289},{},[290],{"type":45,"value":291},"print(sender.sid)     # XExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",{"type":39,"tag":193,"props":293,"children":295},{"class":195,"line":294},12,[296],{"type":39,"tag":193,"props":297,"children":298},{},[299],{"type":45,"value":300},"print(sender.status)  # CREATING\n",{"type":39,"tag":193,"props":302,"children":304},{"class":195,"line":303},13,[305],{"type":39,"tag":193,"props":306,"children":307},{"emptyLinePlaceholder":218},[308],{"type":45,"value":221},{"type":39,"tag":193,"props":310,"children":312},{"class":195,"line":311},14,[313],{"type":39,"tag":193,"props":314,"children":315},{},[316],{"type":45,"value":317},"# Step 2: Submit the OTP Twilio sends to the number\n",{"type":39,"tag":193,"props":319,"children":321},{"class":195,"line":320},15,[322],{"type":39,"tag":193,"props":323,"children":324},{},[325],{"type":45,"value":326},"sender = client.messaging.v2.channels.senders(sender.sid).update(\n",{"type":39,"tag":193,"props":328,"children":330},{"class":195,"line":329},16,[331],{"type":39,"tag":193,"props":332,"children":333},{},[334],{"type":45,"value":335},"    verification_code=\"123456\"\n",{"type":39,"tag":193,"props":337,"children":339},{"class":195,"line":338},17,[340],{"type":39,"tag":193,"props":341,"children":342},{},[343],{"type":45,"value":282},{"type":39,"tag":193,"props":345,"children":347},{"class":195,"line":346},18,[348],{"type":39,"tag":193,"props":349,"children":350},{},[351],{"type":45,"value":352},"print(sender.status)  # ONLINE (may pass through TWILIO_REVIEW first)\n",{"type":39,"tag":48,"props":354,"children":355},{},[356],{"type":39,"tag":176,"props":357,"children":358},{},[359],{"type":45,"value":360},"Node.js",{"type":39,"tag":182,"props":362,"children":366},{"className":363,"code":364,"language":365,"meta":187,"style":187},"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\n\u002F\u002F Step 1: Initiate registration\nconst sender = await client.messaging.v2.channels.senders.create({\n    senderId: \"whatsapp:+15017122661\",\n    verificationMethod: \"sms\",\n});\nconsole.log(sender.sid, sender.status);\n\n\u002F\u002F Step 2: Submit the OTP\nconst verified = await client.messaging.v2.channels.senders(sender.sid).update({\n    verificationCode: \"123456\",\n});\nconsole.log(verified.status);\n","node",[367],{"type":39,"tag":54,"props":368,"children":369},{"__ignoreMap":187},[370,378,386,393,401,409,417,425,433,441,448,456,464,472,479],{"type":39,"tag":193,"props":371,"children":372},{"class":195,"line":196},[373],{"type":39,"tag":193,"props":374,"children":375},{},[376],{"type":45,"value":377},"const twilio = require(\"twilio\");\n",{"type":39,"tag":193,"props":379,"children":380},{"class":195,"line":205},[381],{"type":39,"tag":193,"props":382,"children":383},{},[384],{"type":45,"value":385},"const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",{"type":39,"tag":193,"props":387,"children":388},{"class":195,"line":214},[389],{"type":39,"tag":193,"props":390,"children":391},{"emptyLinePlaceholder":218},[392],{"type":45,"value":221},{"type":39,"tag":193,"props":394,"children":395},{"class":195,"line":224},[396],{"type":39,"tag":193,"props":397,"children":398},{},[399],{"type":45,"value":400},"\u002F\u002F Step 1: Initiate registration\n",{"type":39,"tag":193,"props":402,"children":403},{"class":195,"line":233},[404],{"type":39,"tag":193,"props":405,"children":406},{},[407],{"type":45,"value":408},"const sender = await client.messaging.v2.channels.senders.create({\n",{"type":39,"tag":193,"props":410,"children":411},{"class":195,"line":241},[412],{"type":39,"tag":193,"props":413,"children":414},{},[415],{"type":45,"value":416},"    senderId: \"whatsapp:+15017122661\",\n",{"type":39,"tag":193,"props":418,"children":419},{"class":195,"line":27},[420],{"type":39,"tag":193,"props":421,"children":422},{},[423],{"type":45,"value":424},"    verificationMethod: \"sms\",\n",{"type":39,"tag":193,"props":426,"children":427},{"class":195,"line":258},[428],{"type":39,"tag":193,"props":429,"children":430},{},[431],{"type":45,"value":432},"});\n",{"type":39,"tag":193,"props":434,"children":435},{"class":195,"line":267},[436],{"type":39,"tag":193,"props":437,"children":438},{},[439],{"type":45,"value":440},"console.log(sender.sid, sender.status);\n",{"type":39,"tag":193,"props":442,"children":443},{"class":195,"line":276},[444],{"type":39,"tag":193,"props":445,"children":446},{"emptyLinePlaceholder":218},[447],{"type":45,"value":221},{"type":39,"tag":193,"props":449,"children":450},{"class":195,"line":285},[451],{"type":39,"tag":193,"props":452,"children":453},{},[454],{"type":45,"value":455},"\u002F\u002F Step 2: Submit the OTP\n",{"type":39,"tag":193,"props":457,"children":458},{"class":195,"line":294},[459],{"type":39,"tag":193,"props":460,"children":461},{},[462],{"type":45,"value":463},"const verified = await client.messaging.v2.channels.senders(sender.sid).update({\n",{"type":39,"tag":193,"props":465,"children":466},{"class":195,"line":303},[467],{"type":39,"tag":193,"props":468,"children":469},{},[470],{"type":45,"value":471},"    verificationCode: \"123456\",\n",{"type":39,"tag":193,"props":473,"children":474},{"class":195,"line":311},[475],{"type":39,"tag":193,"props":476,"children":477},{},[478],{"type":45,"value":432},{"type":39,"tag":193,"props":480,"children":481},{"class":195,"line":320},[482],{"type":39,"tag":193,"props":483,"children":484},{},[485],{"type":45,"value":486},"console.log(verified.status);\n",{"type":39,"tag":71,"props":488,"children":489},{},[],{"type":39,"tag":40,"props":491,"children":493},{"id":492},"sender-lifecycle-statuses",[494],{"type":45,"value":495},"Sender Lifecycle Statuses",{"type":39,"tag":497,"props":498,"children":499},"table",{},[500,519],{"type":39,"tag":501,"props":502,"children":503},"thead",{},[504],{"type":39,"tag":505,"props":506,"children":507},"tr",{},[508,514],{"type":39,"tag":509,"props":510,"children":511},"th",{},[512],{"type":45,"value":513},"Status",{"type":39,"tag":509,"props":515,"children":516},{},[517],{"type":45,"value":518},"Meaning",{"type":39,"tag":520,"props":521,"children":522},"tbody",{},[523,541,558,575,592,608,631],{"type":39,"tag":505,"props":524,"children":525},{},[526,536],{"type":39,"tag":527,"props":528,"children":529},"td",{},[530],{"type":39,"tag":54,"props":531,"children":533},{"className":532},[],[534],{"type":45,"value":535},"CREATING",{"type":39,"tag":527,"props":537,"children":538},{},[539],{"type":45,"value":540},"Registration initiated",{"type":39,"tag":505,"props":542,"children":543},{},[544,553],{"type":39,"tag":527,"props":545,"children":546},{},[547],{"type":39,"tag":54,"props":548,"children":550},{"className":549},[],[551],{"type":45,"value":552},"PENDING_VERIFICATION",{"type":39,"tag":527,"props":554,"children":555},{},[556],{"type":45,"value":557},"Awaiting OTP submission",{"type":39,"tag":505,"props":559,"children":560},{},[561,570],{"type":39,"tag":527,"props":562,"children":563},{},[564],{"type":39,"tag":54,"props":565,"children":567},{"className":566},[],[568],{"type":45,"value":569},"VERIFYING",{"type":39,"tag":527,"props":571,"children":572},{},[573],{"type":45,"value":574},"OTP being validated",{"type":39,"tag":505,"props":576,"children":577},{},[578,587],{"type":39,"tag":527,"props":579,"children":580},{},[581],{"type":39,"tag":54,"props":582,"children":584},{"className":583},[],[585],{"type":45,"value":586},"TWILIO_REVIEW",{"type":39,"tag":527,"props":588,"children":589},{},[590],{"type":45,"value":591},"Under Twilio\u002FMeta review",{"type":39,"tag":505,"props":593,"children":594},{},[595,603],{"type":39,"tag":527,"props":596,"children":597},{},[598],{"type":39,"tag":54,"props":599,"children":601},{"className":600},[],[602],{"type":45,"value":59},{"type":39,"tag":527,"props":604,"children":605},{},[606],{"type":45,"value":607},"Active and ready to send",{"type":39,"tag":505,"props":609,"children":610},{},[611,620],{"type":39,"tag":527,"props":612,"children":613},{},[614],{"type":39,"tag":54,"props":615,"children":617},{"className":616},[],[618],{"type":45,"value":619},"OFFLINE",{"type":39,"tag":527,"props":621,"children":622},{},[623,625],{"type":45,"value":624},"Inactive — check ",{"type":39,"tag":54,"props":626,"children":628},{"className":627},[],[629],{"type":45,"value":630},"offlineReasons",{"type":39,"tag":505,"props":632,"children":633},{},[634,643],{"type":39,"tag":527,"props":635,"children":636},{},[637],{"type":39,"tag":54,"props":638,"children":640},{"className":639},[],[641],{"type":45,"value":642},"DRAFT",{"type":39,"tag":527,"props":644,"children":645},{},[646],{"type":45,"value":647},"Incomplete registration",{"type":39,"tag":71,"props":649,"children":650},{},[],{"type":39,"tag":40,"props":652,"children":654},{"id":653},"key-patterns",[655],{"type":45,"value":656},"Key Patterns",{"type":39,"tag":658,"props":659,"children":661},"h3",{"id":660},"set-business-profile",[662],{"type":45,"value":663},"Set Business Profile",{"type":39,"tag":48,"props":665,"children":666},{},[667],{"type":39,"tag":176,"props":668,"children":669},{},[670],{"type":45,"value":180},{"type":39,"tag":182,"props":672,"children":674},{"className":184,"code":673,"language":186,"meta":187,"style":187},"sender = client.messaging.v2.channels.senders(SENDER_SID).update(\n    profile_name=\"Acme Support\",\n    profile_about=\"Official support channel for Acme Corp\",\n    profile_address=\"123 Main St, San Francisco, CA\",\n    profile_vertical=\"PROFESSIONAL_SERVICES\",\n    profile_logo_url=\"https:\u002F\u002Facme.com\u002Flogo.png\",\n    profile_websites=[\"https:\u002F\u002Facme.com\"]\n)\n",[675],{"type":39,"tag":54,"props":676,"children":677},{"__ignoreMap":187},[678,686,694,702,710,718,726,734],{"type":39,"tag":193,"props":679,"children":680},{"class":195,"line":196},[681],{"type":39,"tag":193,"props":682,"children":683},{},[684],{"type":45,"value":685},"sender = client.messaging.v2.channels.senders(SENDER_SID).update(\n",{"type":39,"tag":193,"props":687,"children":688},{"class":195,"line":205},[689],{"type":39,"tag":193,"props":690,"children":691},{},[692],{"type":45,"value":693},"    profile_name=\"Acme Support\",\n",{"type":39,"tag":193,"props":695,"children":696},{"class":195,"line":214},[697],{"type":39,"tag":193,"props":698,"children":699},{},[700],{"type":45,"value":701},"    profile_about=\"Official support channel for Acme Corp\",\n",{"type":39,"tag":193,"props":703,"children":704},{"class":195,"line":224},[705],{"type":39,"tag":193,"props":706,"children":707},{},[708],{"type":45,"value":709},"    profile_address=\"123 Main St, San Francisco, CA\",\n",{"type":39,"tag":193,"props":711,"children":712},{"class":195,"line":233},[713],{"type":39,"tag":193,"props":714,"children":715},{},[716],{"type":45,"value":717},"    profile_vertical=\"PROFESSIONAL_SERVICES\",\n",{"type":39,"tag":193,"props":719,"children":720},{"class":195,"line":241},[721],{"type":39,"tag":193,"props":722,"children":723},{},[724],{"type":45,"value":725},"    profile_logo_url=\"https:\u002F\u002Facme.com\u002Flogo.png\",\n",{"type":39,"tag":193,"props":727,"children":728},{"class":195,"line":27},[729],{"type":39,"tag":193,"props":730,"children":731},{},[732],{"type":45,"value":733},"    profile_websites=[\"https:\u002F\u002Facme.com\"]\n",{"type":39,"tag":193,"props":735,"children":736},{"class":195,"line":258},[737],{"type":39,"tag":193,"props":738,"children":739},{},[740],{"type":45,"value":282},{"type":39,"tag":48,"props":742,"children":743},{},[744],{"type":39,"tag":176,"props":745,"children":746},{},[747],{"type":45,"value":360},{"type":39,"tag":182,"props":749,"children":751},{"className":363,"code":750,"language":365,"meta":187,"style":187},"const sender = await client.messaging.v2.channels.senders(SENDER_SID).update({\n    profileName: \"Acme Support\",\n    profileAbout: \"Official support channel for Acme Corp\",\n    profileAddress: \"123 Main St, San Francisco, CA\",\n    profileVertical: \"PROFESSIONAL_SERVICES\",\n    profileLogoUrl: \"https:\u002F\u002Facme.com\u002Flogo.png\",\n    profileWebsites: [\"https:\u002F\u002Facme.com\"],\n});\n",[752],{"type":39,"tag":54,"props":753,"children":754},{"__ignoreMap":187},[755,763,771,779,787,795,803,811],{"type":39,"tag":193,"props":756,"children":757},{"class":195,"line":196},[758],{"type":39,"tag":193,"props":759,"children":760},{},[761],{"type":45,"value":762},"const sender = await client.messaging.v2.channels.senders(SENDER_SID).update({\n",{"type":39,"tag":193,"props":764,"children":765},{"class":195,"line":205},[766],{"type":39,"tag":193,"props":767,"children":768},{},[769],{"type":45,"value":770},"    profileName: \"Acme Support\",\n",{"type":39,"tag":193,"props":772,"children":773},{"class":195,"line":214},[774],{"type":39,"tag":193,"props":775,"children":776},{},[777],{"type":45,"value":778},"    profileAbout: \"Official support channel for Acme Corp\",\n",{"type":39,"tag":193,"props":780,"children":781},{"class":195,"line":224},[782],{"type":39,"tag":193,"props":783,"children":784},{},[785],{"type":45,"value":786},"    profileAddress: \"123 Main St, San Francisco, CA\",\n",{"type":39,"tag":193,"props":788,"children":789},{"class":195,"line":233},[790],{"type":39,"tag":193,"props":791,"children":792},{},[793],{"type":45,"value":794},"    profileVertical: \"PROFESSIONAL_SERVICES\",\n",{"type":39,"tag":193,"props":796,"children":797},{"class":195,"line":241},[798],{"type":39,"tag":193,"props":799,"children":800},{},[801],{"type":45,"value":802},"    profileLogoUrl: \"https:\u002F\u002Facme.com\u002Flogo.png\",\n",{"type":39,"tag":193,"props":804,"children":805},{"class":195,"line":27},[806],{"type":39,"tag":193,"props":807,"children":808},{},[809],{"type":45,"value":810},"    profileWebsites: [\"https:\u002F\u002Facme.com\"],\n",{"type":39,"tag":193,"props":812,"children":813},{"class":195,"line":258},[814],{"type":39,"tag":193,"props":815,"children":816},{},[817],{"type":45,"value":432},{"type":39,"tag":658,"props":819,"children":821},{"id":820},"configure-webhooks",[822],{"type":45,"value":823},"Configure Webhooks",{"type":39,"tag":48,"props":825,"children":826},{},[827],{"type":39,"tag":176,"props":828,"children":829},{},[830],{"type":45,"value":180},{"type":39,"tag":182,"props":832,"children":834},{"className":184,"code":833,"language":186,"meta":187,"style":187},"sender = client.messaging.v2.channels.senders(SENDER_SID).update(\n    callback_url=\"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Finbound\",\n    callback_method=\"POST\",\n    status_callback_url=\"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Fstatus\"\n)\n",[835],{"type":39,"tag":54,"props":836,"children":837},{"__ignoreMap":187},[838,845,853,861,869],{"type":39,"tag":193,"props":839,"children":840},{"class":195,"line":196},[841],{"type":39,"tag":193,"props":842,"children":843},{},[844],{"type":45,"value":685},{"type":39,"tag":193,"props":846,"children":847},{"class":195,"line":205},[848],{"type":39,"tag":193,"props":849,"children":850},{},[851],{"type":45,"value":852},"    callback_url=\"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Finbound\",\n",{"type":39,"tag":193,"props":854,"children":855},{"class":195,"line":214},[856],{"type":39,"tag":193,"props":857,"children":858},{},[859],{"type":45,"value":860},"    callback_method=\"POST\",\n",{"type":39,"tag":193,"props":862,"children":863},{"class":195,"line":224},[864],{"type":39,"tag":193,"props":865,"children":866},{},[867],{"type":45,"value":868},"    status_callback_url=\"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Fstatus\"\n",{"type":39,"tag":193,"props":870,"children":871},{"class":195,"line":233},[872],{"type":39,"tag":193,"props":873,"children":874},{},[875],{"type":45,"value":282},{"type":39,"tag":48,"props":877,"children":878},{},[879],{"type":39,"tag":176,"props":880,"children":881},{},[882],{"type":45,"value":360},{"type":39,"tag":182,"props":884,"children":886},{"className":363,"code":885,"language":365,"meta":187,"style":187},"await client.messaging.v2.channels.senders(SENDER_SID).update({\n    callbackUrl: \"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Finbound\",\n    callbackMethod: \"POST\",\n    statusCallbackUrl: \"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Fstatus\",\n});\n",[887],{"type":39,"tag":54,"props":888,"children":889},{"__ignoreMap":187},[890,898,906,914,922],{"type":39,"tag":193,"props":891,"children":892},{"class":195,"line":196},[893],{"type":39,"tag":193,"props":894,"children":895},{},[896],{"type":45,"value":897},"await client.messaging.v2.channels.senders(SENDER_SID).update({\n",{"type":39,"tag":193,"props":899,"children":900},{"class":195,"line":205},[901],{"type":39,"tag":193,"props":902,"children":903},{},[904],{"type":45,"value":905},"    callbackUrl: \"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Finbound\",\n",{"type":39,"tag":193,"props":907,"children":908},{"class":195,"line":214},[909],{"type":39,"tag":193,"props":910,"children":911},{},[912],{"type":45,"value":913},"    callbackMethod: \"POST\",\n",{"type":39,"tag":193,"props":915,"children":916},{"class":195,"line":224},[917],{"type":39,"tag":193,"props":918,"children":919},{},[920],{"type":45,"value":921},"    statusCallbackUrl: \"https:\u002F\u002Fyourapp.com\u002Fwhatsapp\u002Fstatus\",\n",{"type":39,"tag":193,"props":923,"children":924},{"class":195,"line":233},[925],{"type":39,"tag":193,"props":926,"children":927},{},[928],{"type":45,"value":432},{"type":39,"tag":658,"props":930,"children":932},{"id":931},"retrieve-and-list-senders",[933],{"type":45,"value":934},"Retrieve and List Senders",{"type":39,"tag":48,"props":936,"children":937},{},[938],{"type":39,"tag":176,"props":939,"children":940},{},[941],{"type":45,"value":180},{"type":39,"tag":182,"props":943,"children":945},{"className":184,"code":944,"language":186,"meta":187,"style":187},"sender = client.messaging.v2.channels.senders(SENDER_SID).fetch()\nprint(sender.status)\n\nfor s in client.messaging.v2.channels.senders.list():\n    print(s.sid, s.status)\n",[946],{"type":39,"tag":54,"props":947,"children":948},{"__ignoreMap":187},[949,957,965,972,980],{"type":39,"tag":193,"props":950,"children":951},{"class":195,"line":196},[952],{"type":39,"tag":193,"props":953,"children":954},{},[955],{"type":45,"value":956},"sender = client.messaging.v2.channels.senders(SENDER_SID).fetch()\n",{"type":39,"tag":193,"props":958,"children":959},{"class":195,"line":205},[960],{"type":39,"tag":193,"props":961,"children":962},{},[963],{"type":45,"value":964},"print(sender.status)\n",{"type":39,"tag":193,"props":966,"children":967},{"class":195,"line":214},[968],{"type":39,"tag":193,"props":969,"children":970},{"emptyLinePlaceholder":218},[971],{"type":45,"value":221},{"type":39,"tag":193,"props":973,"children":974},{"class":195,"line":224},[975],{"type":39,"tag":193,"props":976,"children":977},{},[978],{"type":45,"value":979},"for s in client.messaging.v2.channels.senders.list():\n",{"type":39,"tag":193,"props":981,"children":982},{"class":195,"line":233},[983],{"type":39,"tag":193,"props":984,"children":985},{},[986],{"type":45,"value":987},"    print(s.sid, s.status)\n",{"type":39,"tag":48,"props":989,"children":990},{},[991],{"type":39,"tag":176,"props":992,"children":993},{},[994],{"type":45,"value":360},{"type":39,"tag":182,"props":996,"children":998},{"className":363,"code":997,"language":365,"meta":187,"style":187},"const sender = await client.messaging.v2.channels.senders(SENDER_SID).fetch();\nconst senders = await client.messaging.v2.channels.senders.list();\nsenders.forEach(s => console.log(s.sid, s.status));\n",[999],{"type":39,"tag":54,"props":1000,"children":1001},{"__ignoreMap":187},[1002,1010,1018],{"type":39,"tag":193,"props":1003,"children":1004},{"class":195,"line":196},[1005],{"type":39,"tag":193,"props":1006,"children":1007},{},[1008],{"type":45,"value":1009},"const sender = await client.messaging.v2.channels.senders(SENDER_SID).fetch();\n",{"type":39,"tag":193,"props":1011,"children":1012},{"class":195,"line":205},[1013],{"type":39,"tag":193,"props":1014,"children":1015},{},[1016],{"type":45,"value":1017},"const senders = await client.messaging.v2.channels.senders.list();\n",{"type":39,"tag":193,"props":1019,"children":1020},{"class":195,"line":214},[1021],{"type":39,"tag":193,"props":1022,"children":1023},{},[1024],{"type":45,"value":1025},"senders.forEach(s => console.log(s.sid, s.status));\n",{"type":39,"tag":48,"props":1027,"children":1028},{},[1029,1031,1036,1038,1043,1045,1051],{"type":45,"value":1030},"If a sender is ",{"type":39,"tag":54,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":45,"value":619},{"type":45,"value":1037},", check the ",{"type":39,"tag":54,"props":1039,"children":1041},{"className":1040},[],[1042],{"type":45,"value":630},{"type":45,"value":1044}," array in the response (e.g. code ",{"type":39,"tag":54,"props":1046,"children":1048},{"className":1047},[],[1049],{"type":45,"value":1050},"63020",{"type":45,"value":1052}," means business hasn't accepted Twilio's Meta invitation).",{"type":39,"tag":658,"props":1054,"children":1056},{"id":1055},"migrate-an-existing-whatsapp-number",[1057],{"type":45,"value":1058},"Migrate an Existing WhatsApp Number",{"type":39,"tag":48,"props":1060,"children":1061},{},[1062],{"type":45,"value":1063},"If a number is already registered on WhatsApp (personal or business):",{"type":39,"tag":1065,"props":1066,"children":1067},"ol",{},[1068,1079,1084],{"type":39,"tag":85,"props":1069,"children":1070},{},[1071,1073],{"type":45,"value":1072},"Check: ",{"type":39,"tag":54,"props":1074,"children":1076},{"className":1075},[],[1077],{"type":45,"value":1078},"https:\u002F\u002Fwa.me\u002F\u003CPHONE_NUMBER>?text=hi",{"type":39,"tag":85,"props":1080,"children":1081},{},[1082],{"type":45,"value":1083},"Delete the existing WhatsApp account on the device, or disable 2FA on the competing platform",{"type":39,"tag":85,"props":1085,"children":1086},{},[1087],{"type":45,"value":1088},"Proceed with registration above",{"type":39,"tag":658,"props":1090,"children":1092},{"id":1091},"isv-tech-provider-flow",[1093],{"type":45,"value":1094},"ISV \u002F Tech Provider Flow",{"type":39,"tag":48,"props":1096,"children":1097},{},[1098],{"type":45,"value":1099},"Register senders under a client's WhatsApp Business Account (WABA):",{"type":39,"tag":48,"props":1101,"children":1102},{},[1103],{"type":39,"tag":176,"props":1104,"children":1105},{},[1106],{"type":45,"value":180},{"type":39,"tag":182,"props":1108,"children":1110},{"className":184,"code":1109,"language":186,"meta":187,"style":187},"sender = client.messaging.v2.channels.senders.create(\n    sender_id=\"whatsapp:+15017122661\",\n    waba_id=\"client-waba-id\"\n)\n",[1111],{"type":39,"tag":54,"props":1112,"children":1113},{"__ignoreMap":187},[1114,1121,1128,1136],{"type":39,"tag":193,"props":1115,"children":1116},{"class":195,"line":196},[1117],{"type":39,"tag":193,"props":1118,"children":1119},{},[1120],{"type":45,"value":255},{"type":39,"tag":193,"props":1122,"children":1123},{"class":195,"line":205},[1124],{"type":39,"tag":193,"props":1125,"children":1126},{},[1127],{"type":45,"value":264},{"type":39,"tag":193,"props":1129,"children":1130},{"class":195,"line":214},[1131],{"type":39,"tag":193,"props":1132,"children":1133},{},[1134],{"type":45,"value":1135},"    waba_id=\"client-waba-id\"\n",{"type":39,"tag":193,"props":1137,"children":1138},{"class":195,"line":224},[1139],{"type":39,"tag":193,"props":1140,"children":1141},{},[1142],{"type":45,"value":282},{"type":39,"tag":48,"props":1144,"children":1145},{},[1146],{"type":39,"tag":176,"props":1147,"children":1148},{},[1149],{"type":45,"value":360},{"type":39,"tag":182,"props":1151,"children":1153},{"className":363,"code":1152,"language":365,"meta":187,"style":187},"const sender = await client.messaging.v2.channels.senders.create({\n    senderId: \"whatsapp:+15017122661\",\n    wabaId: \"client-waba-id\",\n});\n",[1154],{"type":39,"tag":54,"props":1155,"children":1156},{"__ignoreMap":187},[1157,1164,1171,1179],{"type":39,"tag":193,"props":1158,"children":1159},{"class":195,"line":196},[1160],{"type":39,"tag":193,"props":1161,"children":1162},{},[1163],{"type":45,"value":408},{"type":39,"tag":193,"props":1165,"children":1166},{"class":195,"line":205},[1167],{"type":39,"tag":193,"props":1168,"children":1169},{},[1170],{"type":45,"value":416},{"type":39,"tag":193,"props":1172,"children":1173},{"class":195,"line":214},[1174],{"type":39,"tag":193,"props":1175,"children":1176},{},[1177],{"type":45,"value":1178},"    wabaId: \"client-waba-id\",\n",{"type":39,"tag":193,"props":1180,"children":1181},{"class":195,"line":224},[1182],{"type":39,"tag":193,"props":1183,"children":1184},{},[1185],{"type":45,"value":432},{"type":39,"tag":48,"props":1187,"children":1188},{},[1189],{"type":45,"value":1190},"The client must accept Twilio's invitation in their Meta Business Manager.",{"type":39,"tag":71,"props":1192,"children":1193},{},[],{"type":39,"tag":40,"props":1195,"children":1197},{"id":1196},"cannot",[1198],{"type":45,"value":1199},"CANNOT",{"type":39,"tag":81,"props":1201,"children":1202},{},[1203,1213,1223,1233],{"type":39,"tag":85,"props":1204,"children":1205},{},[1206,1211],{"type":39,"tag":176,"props":1207,"children":1208},{},[1209],{"type":45,"value":1210},"Cannot register a phone number to multiple WABAs",{"type":45,"value":1212}," — Each number belongs to one WABA at a time",{"type":39,"tag":85,"props":1214,"children":1215},{},[1216,1221],{"type":39,"tag":176,"props":1217,"children":1218},{},[1219],{"type":45,"value":1220},"Cannot exceed 2 senders without Meta Business Verification",{"type":45,"value":1222}," — Unverified accounts are limited to 2",{"type":39,"tag":85,"props":1224,"children":1225},{},[1226,1231],{"type":39,"tag":176,"props":1227,"children":1228},{},[1229],{"type":45,"value":1230},"Cannot exceed 20 senders without exception",{"type":45,"value":1232}," — Verified Meta Business Manager: max 20 (50 with exception request)",{"type":39,"tag":85,"props":1234,"children":1235},{},[1236,1241],{"type":39,"tag":176,"props":1237,"children":1238},{},[1239],{"type":45,"value":1240},"Cannot verify phone number only via SMS",{"type":45,"value":1242}," — Voice verification is available if SMS cannot be received",{"type":39,"tag":71,"props":1244,"children":1245},{},[],{"type":39,"tag":40,"props":1247,"children":1249},{"id":1248},"next-steps",[1250],{"type":45,"value":1251},"Next Steps",{"type":39,"tag":81,"props":1253,"children":1254},{},[1255,1270,1285],{"type":39,"tag":85,"props":1256,"children":1257},{},[1258,1263,1265],{"type":39,"tag":176,"props":1259,"children":1260},{},[1261],{"type":45,"value":1262},"Send WhatsApp messages with this sender:",{"type":45,"value":1264}," ",{"type":39,"tag":54,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":45,"value":67},{"type":39,"tag":85,"props":1271,"children":1272},{},[1273,1278,1279],{"type":39,"tag":176,"props":1274,"children":1275},{},[1276],{"type":45,"value":1277},"Create message templates:",{"type":45,"value":1264},{"type":39,"tag":54,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":45,"value":1284},"twilio-content-template-builder",{"type":39,"tag":85,"props":1286,"children":1287},{},[1288,1293,1294],{"type":39,"tag":176,"props":1289,"children":1290},{},[1291],{"type":45,"value":1292},"Send WhatsApp OTPs:",{"type":45,"value":1264},{"type":39,"tag":54,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":45,"value":1299},"twilio-verify-send-otp",{"type":39,"tag":1301,"props":1302,"children":1303},"style",{},[1304],{"type":45,"value":1305},"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":1307,"total":1408},[1308,1323,1343,1354,1366,1381,1396],{"slug":95,"name":95,"fn":1309,"description":1310,"org":1311,"tags":1312,"stars":23,"repoUrl":24,"updatedAt":1322},"configure Twilio accounts and credentials","Create and configure a Twilio account from scratch. Covers free trial signup, trial limitations, getting credentials (Account SID and Auth Token), buying a phone number, verifying recipient numbers for trial use, SDK installation, first API call, subaccount management (creation, inheritance, credential isolation, limits), and enabling specific products (AI Assistants, Conversations, Verify, ConversationRelay, WhatsApp). Use this skill before any other Twilio skill if you do not yet have a Twilio account or need to enable a product. For Organization-level governance (SSO, SCIM, multi-team), see `twilio-organizations-setup`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1313,1316,1319],{"name":1314,"slug":1315,"type":15},"API Development","api-development",{"name":1317,"slug":1318,"type":15},"Communications","communications",{"name":1320,"slug":1321,"type":15},"SMS","sms","2026-08-01T05:43:28.968968",{"slug":1324,"name":1324,"fn":1325,"description":1326,"org":1327,"tags":1328,"stars":23,"repoUrl":24,"updatedAt":1342},"twilio-agent-augmentation-architect","augment human agents with AI intelligence","Planning skill for augmenting human agents with real-time AI intelligence. Qualifies the developer's use case across coaching, compliance, QA, and routing to recommend the right Conversation Intelligence + Conversation Memory + TaskRouter architecture. Handles both \"I want to add AI coaching to my call center\" and \"configure Conversation Intelligence operators for script adherence.\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1329,1332,1335,1338,1341],{"name":1330,"slug":1331,"type":15},"Agents","agents",{"name":1333,"slug":1334,"type":15},"AI","ai",{"name":1336,"slug":1337,"type":15},"Coaching","coaching",{"name":1339,"slug":1340,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":1344,"name":1344,"fn":1345,"description":1346,"org":1347,"tags":1348,"stars":23,"repoUrl":24,"updatedAt":1353},"twilio-agent-connect","connect AI agents to Twilio channels","Connect third-party AI agents (OpenAI, Bedrock, LangChain, Microsoft Foundry) to Twilio's communication channels using the Twilio Agent Connect SDK. Covers identity resolution, memory and context management via Conversation Memory, conversation orchestration via Conversation Orchestrator, multi-channel handling (Voice, SMS, RCS, WhatsApp, Chat), and AI-to-human escalation. Use this skill when integrating an existing LLM agent with Twilio services.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1349,1350,1351,1352],{"name":1330,"slug":1331,"type":15},{"name":1314,"slug":1315,"type":15},{"name":1317,"slug":1318,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":1355,"name":1355,"fn":1356,"description":1357,"org":1358,"tags":1359,"stars":23,"repoUrl":24,"updatedAt":1365},"twilio-ai-agent-architect","plan Twilio conversational AI agents","Planning skill for AI-powered conversational agents. Qualifies the developer's use case across outcome sophistication, entry point, and customer profile to recommend the right Twilio Conversations architecture and implementation skills. Handles both high-level requests (\"build me a voice AI assistant\") and specific ones (\"integrate ConversationRelay with my OpenAI backend\").\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1360,1361,1364],{"name":1330,"slug":1331,"type":15},{"name":1362,"slug":1363,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":1367,"name":1367,"fn":1368,"description":1369,"org":1370,"tags":1371,"stars":23,"repoUrl":24,"updatedAt":1380},"twilio-call-recordings","record and manage Twilio voice calls","Record Twilio voice calls correctly. Covers the critical distinction between Record verb (voicemail) and Dial record (call recording), dual-channel for QA, mid-call pause for PCI, Conference recording, and the ConversationRelay workaround. Use this skill whenever you need to capture call audio for compliance, QA, or analytics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1372,1375,1378,1379],{"name":1373,"slug":1374,"type":15},"Audio","audio",{"name":1376,"slug":1377,"type":15},"Compliance","compliance",{"name":1339,"slug":1340,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":1382,"name":1382,"fn":1383,"description":1384,"org":1385,"tags":1386,"stars":23,"repoUrl":24,"updatedAt":1395},"twilio-cli-reference","manage Twilio resources via CLI","Twilio CLI reference for managing Twilio resources from the terminal. Covers installation, credential profiles, phone number provisioning, sending SMS and email, webhook configuration, local development with a tunneling service, debugging with watch and logs, serverless deployment, and plugin ecosystem. Use when the developer asks to \"just do it\", \"set this up\", \"run a command\", mentions \"CLI\", \"command line\", or \"terminal\", or when an AI agent can execute a task directly instead of writing application code.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1387,1390,1393,1394],{"name":1388,"slug":1389,"type":15},"CLI","cli",{"name":1391,"slug":1392,"type":15},"Local Development","local-development",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":1397,"name":1397,"fn":1398,"description":1399,"org":1400,"tags":1401,"stars":23,"repoUrl":24,"updatedAt":1407},"twilio-compliance-onboarding","manage Twilio messaging and voice compliance","Registrations required BEFORE Twilio traffic works. Covers messaging programs (A2P 10DLC, toll-free verification, WhatsApp WABA, RCS, short code, alphanumeric sender) and voice trust programs (STIR\u002FSHAKEN, Voice Integrity, Branded Calling, CNAM). Each number\u002Fsender type has its own program — registration blocks traffic until complete.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1402,1403,1404,1405,1406],{"name":1376,"slug":1377,"type":15},{"name":20,"slug":21,"type":15},{"name":1320,"slug":1321,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-07-17T06:05:47.897229",57,{"items":1410,"total":1408},[1411,1417,1425,1432,1438,1445,1452,1460,1476,1489,1504,1522],{"slug":95,"name":95,"fn":1309,"description":1310,"org":1412,"tags":1413,"stars":23,"repoUrl":24,"updatedAt":1322},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1414,1415,1416],{"name":1314,"slug":1315,"type":15},{"name":1317,"slug":1318,"type":15},{"name":1320,"slug":1321,"type":15},{"slug":1324,"name":1324,"fn":1325,"description":1326,"org":1418,"tags":1419,"stars":23,"repoUrl":24,"updatedAt":1342},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1420,1421,1422,1423,1424],{"name":1330,"slug":1331,"type":15},{"name":1333,"slug":1334,"type":15},{"name":1336,"slug":1337,"type":15},{"name":1339,"slug":1340,"type":15},{"name":9,"slug":8,"type":15},{"slug":1344,"name":1344,"fn":1345,"description":1346,"org":1426,"tags":1427,"stars":23,"repoUrl":24,"updatedAt":1353},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1428,1429,1430,1431],{"name":1330,"slug":1331,"type":15},{"name":1314,"slug":1315,"type":15},{"name":1317,"slug":1318,"type":15},{"name":9,"slug":8,"type":15},{"slug":1355,"name":1355,"fn":1356,"description":1357,"org":1433,"tags":1434,"stars":23,"repoUrl":24,"updatedAt":1365},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1435,1436,1437],{"name":1330,"slug":1331,"type":15},{"name":1362,"slug":1363,"type":15},{"name":9,"slug":8,"type":15},{"slug":1367,"name":1367,"fn":1368,"description":1369,"org":1439,"tags":1440,"stars":23,"repoUrl":24,"updatedAt":1380},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1441,1442,1443,1444],{"name":1373,"slug":1374,"type":15},{"name":1376,"slug":1377,"type":15},{"name":1339,"slug":1340,"type":15},{"name":9,"slug":8,"type":15},{"slug":1382,"name":1382,"fn":1383,"description":1384,"org":1446,"tags":1447,"stars":23,"repoUrl":24,"updatedAt":1395},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1448,1449,1450,1451],{"name":1388,"slug":1389,"type":15},{"name":1391,"slug":1392,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":1397,"name":1397,"fn":1398,"description":1399,"org":1453,"tags":1454,"stars":23,"repoUrl":24,"updatedAt":1407},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1455,1456,1457,1458,1459],{"name":1376,"slug":1377,"type":15},{"name":20,"slug":21,"type":15},{"name":1320,"slug":1321,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":1461,"name":1461,"fn":1462,"description":1463,"org":1464,"tags":1465,"stars":23,"repoUrl":24,"updatedAt":1475},"twilio-compliance-traffic","ensure compliance for Twilio messaging traffic","Rules you must follow for Twilio messaging and voice traffic. Covers TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI), FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies, SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively when developers have working traffic to ensure they follow the rules.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1466,1467,1468,1471,1474],{"name":1376,"slug":1377,"type":15},{"name":20,"slug":21,"type":15},{"name":1469,"slug":1470,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":1472,"slug":1473,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":1477,"name":1477,"fn":1478,"description":1479,"org":1480,"tags":1481,"stars":23,"repoUrl":24,"updatedAt":1488},"twilio-conference-calls","build multi-party calls with Twilio Conference","Build multi-party calls using Twilio Conference. Covers warm transfer, cold transfer, coaching (whisper), hold vs mute, participant modes, and supervisor barge. Use this skill for any contact center, support line, or scenario requiring transfers, holds, or multi-party calls.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1482,1483,1484,1487],{"name":1373,"slug":1374,"type":15},{"name":1317,"slug":1318,"type":15},{"name":1485,"slug":1486,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":1284,"name":1284,"fn":1490,"description":1491,"org":1492,"tags":1493,"stars":23,"repoUrl":24,"updatedAt":1503},"create and send message templates with Twilio","Create, manage, and send message templates using Twilio's Content API. Covers template creation for WhatsApp, SMS, RCS, and MMS; variable usage; WhatsApp Meta approval; and sending templates via ContentSid. Use this skill when building structured messages that require pre-approval or consistent formatting across channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1494,1497,1498,1499,1502],{"name":1495,"slug":1496,"type":15},"Email","email",{"name":20,"slug":21,"type":15},{"name":1320,"slug":1321,"type":15},{"name":1500,"slug":1501,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":1505,"name":1505,"fn":1506,"description":1507,"org":1508,"tags":1509,"stars":23,"repoUrl":24,"updatedAt":1521},"twilio-conversation-intelligence","build conversation intelligence pipelines","Twilio Conversation Intelligence development guide. Use when building real-time or post-call conversation analysis, language operator pipelines, sentiment analysis, agent assist, cross-channel analytics, or querying aggregated conversation insights (sentiment trends, escalation rates, dashboards).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1510,1511,1514,1517,1520],{"name":1330,"slug":1331,"type":15},{"name":1512,"slug":1513,"type":15},"Analytics","analytics",{"name":1515,"slug":1516,"type":15},"Monitoring","monitoring",{"name":1518,"slug":1519,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":1523,"name":1523,"fn":1524,"description":1525,"org":1526,"tags":1527,"stars":23,"repoUrl":24,"updatedAt":1533},"twilio-conversation-memory","manage conversation memory with Twilio","Store and retrieve conversation context using Twilio Conversation Memory. Covers Memory Store provisioning, profile management, traits, observations, conversation summaries, and semantic Recall. Use this skill to give AI agents or human agents persistent memory of conversations across sessions and channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1528,1529,1532],{"name":1330,"slug":1331,"type":15},{"name":1530,"slug":1531,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724"]