Sign in

Create incoming number

documented

Provision a new Twilio phone number for your account.

POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers.jsonPhone Numbersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.twilio.com/2010-04-01/Accounts/{{$account_sid}}/IncomingPhoneNumbers.json" \
  -X POST \
  -u "{{$account_sid}}:{{$auth_token}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode "PhoneNumber={{$phone_number}}" \
  --data-urlencode "AreaCode={{$area_code}}" \
  --data-urlencode "SmsUrl={{$sms_url}}" \
  --data-urlencode "SmsMethod={{$sms_method}}" \
  --data-urlencode "VoiceUrl={{$voice_url}}" \
  --data-urlencode "VoiceMethod={{$voice_method}}" \
  --data-urlencode "SmsApplicationSid={{$sms_application_sid}}" \
  --data-urlencode "BundleSid={{$bundle_sid}}"
Create incoming number · Twilio · OpenIntegrations