OMG
12/15/2025, 12:01 PMVapi Support Bot
12/15/2025, 12:02 PMsmsEnabled: true when creating or updating the number. Here’s a sample cURL command:
bash
curl -X POST https://api.vapi.ai/phone-number \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"provider": "twilio",
"smsEnabled": true,
"credentialId": "<your_twilio_credential_id>"
}'
Make sure your Twilio number is US-based and SMS-enabled. For more details, see the [Vapi Inbound SMS guide](https://docs.vapi.ai/phone-numbers/inbound-sms).
Source:
- [Inbound SMS](https://docs.vapi.ai/phone-numbers/inbound-sms)OMG
12/15/2025, 12:06 PMChiranjeet Mishra
12/17/2025, 6:48 AMsmsEnabled: true to enable SMS.
bash
curl -X POST https://api.vapi.ai/phone-number \
-H "Authorization: Bearer <your_token>" \
-H "Content-Type: application/json" \
-d '{
"provider": "twilio",
"smsEnabled": true,
"credentialId": "<your_twilio_credential_id>"
}'
4. Assign Your Assistant: Once imported, assign an assistant to handle SMS communications through the number settings.
For more details, you can refer to the [Vapi Inbound SMS guide](https://docs.vapi.ai/phone-numbers/inbound-sms).Chiranjeet Mishra
12/17/2025, 6:48 AM