Manage Phone Numbers
Get Supported Countries
try! telephonyClient.getSupportedCountries { result in
switch result {
case .success(let countries):
// countries: list of strings containing the country ISO codes
case .failure(let error):
// error: SudoTelephonyClientError
}
}telephonyClient.getSupportedCountries { result ->
when (result) {
is Result.Success -> {
// result.value.countries: list of strings containing
// the country ISO codes
}
is Result.Error -> {
// result.throwable: telephonysdk.Result.Error
}
}
}Search Available Phone Numbers
By Country Only
By Country and Prefix
By Latitude and Longitude
Search Result
Provision Phone Number
Phone Number
Entitlements
De-Provision Phone Number
Retrieving Existing Phone Numbers
Using Phone Number ID
All Provisioned Phone Numbers
Retrieve Multiple Phone Numbers Result
Last updated