Evo Voice

<back to all web services

AppSearchPhoneNumbers

Requires Authentication
The following routes are available for this service:
GET/portal/search-phone-numbers
import java.math.*
import java.util.*
import net.servicestack.client.*


open class AppSearchPhoneNumbers
{
    var accountId:String? = null
    var customerId:String? = null
    var areaCode:String? = null
    var countryCode:String? = null
    var postalCode:String? = null
    var contains:String? = null
    var distance:Int? = null
    var phoneNumberType:EndpointTypes? = null
}

enum class EndpointTypes
{
    PhoneNumber,
    User,
    FaxNumber,
    EmailAddress,
    Unused1,
    Unused2,
    Unused3,
    Unused4,
    Unused5,
    Team,
}

open class AppSearchPhoneNumbersResponse
{
    var numbers:ArrayList<AppSearchPhoneNumberInfo> = ArrayList<AppSearchPhoneNumberInfo>()
}

open class AppSearchPhoneNumberInfo
{
    var phoneNumber:String? = null
}

Kotlin AppSearchPhoneNumbers DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /portal/search-phone-numbers HTTP/1.1 
Host: evovoice.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<AppSearchPhoneNumbersResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.App.Portal">
  <Numbers>
    <AppSearchPhoneNumberInfo>
      <PhoneNumber>String</PhoneNumber>
    </AppSearchPhoneNumberInfo>
  </Numbers>
</AppSearchPhoneNumbersResponse>