List available phone numbers
Retrieves all phone numbers from the connected Twilio account. Each number includes an imported flag indicating whether it has already been imported into the system. Use this endpoint to discover numbers before importing them.
Phone Number Discovery
This endpoint connects to your Twilio account and retrieves all incoming phone numbers.Response Fields
Each phone number includes:| Field | Description |
|---|---|
| sid | Twilio Phone Number SID (used for import) |
| phoneNumber | E.164 formatted phone number |
| friendlyName | Human-readable name set in Twilio |
| imported | Whether the number has already been imported |
Import Workflow
- Call this endpoint to see available numbers
- Note the
sidvalues of numbers you want to import - Use the
/import-numbersendpoint with those SIDs
Already Imported Numbers
Numbers marked withimported: true are already in your system and linked to this provider. Attempting to import them again will result in a duplicate error.Path Parameters
Provider identifier
Response
Returns available phone numbers with import status
Twilio Phone Number SID. Unique identifier for the phone number in Twilio. Format: PN[a-f0-9]{32} (e.g., PNxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx).
Phone number in E.164 format (e.g., +14155551234). The actual dialable phone number.
Human-readable name for the phone number from Twilio. May include formatting or descriptive text.
Whether this phone number has already been imported into the system. True if imported, false if available for import.