TelAPI.TelAPIRestClient.GetAvailablePhoneNumbers C# (CSharp) Method

GetAvailablePhoneNumbers() public method

Request a list of available numbers
public GetAvailablePhoneNumbers ( string isoCountryCode, AvaliablePhoneNumberType type ) : AvailablePhoneNumberResult
isoCountryCode string Two letter country code of the available phone number.
type AvaliablePhoneNumberType Search for local (default) or toll free nubmers.
return AvailablePhoneNumberResult
        public AvailablePhoneNumberResult GetAvailablePhoneNumbers(string isoCountryCode, AvaliablePhoneNumberType type)
        {
            return GetAvailablePhoneNumbers(isoCountryCode, null, null, null, null, type);
        }

Same methods

TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, string areaCode, AvaliablePhoneNumberType type ) : AvailablePhoneNumberResult
TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, string areaCode, string contains, AvaliablePhoneNumberType type ) : AvailablePhoneNumberResult
TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, string areaCode, string contains, string inRegion, string inPostalCode, AvaliablePhoneNumberType type ) : AvailablePhoneNumberResult
TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, AvaliablePhoneNumberType type ) : Task
TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, string areaCode, AvaliablePhoneNumberType type ) : Task
TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, string areaCode, string contains, AvaliablePhoneNumberType type ) : Task
TelAPIRestClient::GetAvailablePhoneNumbers ( string isoCountryCode, string areaCode, string contains, string inRegion, string inPostalCode, AvaliablePhoneNumberType type ) : Task