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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	numbers: 
	[
		{
			phoneNumber: String
		}
	]
}