Evo Voice

<back to all web services

AppGetUsers

Requires Authentication
The following routes are available for this service:
GET/portal/users
namespace Voice.Api

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type EntityInfo() = 
        ///<summary>
        ///The ID of the object
        ///</summary>
        [<ApiMember(Description="The ID of the object")>]
        member val Id:String = null with get,set

        ///<summary>
        ///The date the object was created
        ///</summary>
        [<ApiMember(Description="The date the object was created")>]
        member val DateCreated:String = null with get,set

        ///<summary>
        ///The date the object was last modified
        ///</summary>
        [<ApiMember(Description="The date the object was last modified")>]
        member val DateLastModified:String = null with get,set

        ///<summary>
        ///The user that created this object
        ///</summary>
        [<ApiMember(Description="The user that created this object")>]
        member val CreatedBy:String = null with get,set

        ///<summary>
        ///The user that last modified this object
        ///</summary>
        [<ApiMember(Description="The user that last modified this object")>]
        member val LastModifiedBy:String = null with get,set

    [<AllowNullLiteral>]
    type CustomerBreadcrumb() = 
        member val Id:String = null with get,set
        member val Name:String = null with get,set

    type EndpointTypes =
        | PhoneNumber = 0
        | User = 1
        | FaxNumber = 2
        | EmailAddress = 3
        | Unused_1 = 4
        | Unused_2 = 5
        | Unused_3 = 6
        | Unused_4 = 7
        | Unused_5 = 8
        | Team = 9

    [<AllowNullLiteral>]
    type Value() = 
        member val BoolValue:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val StringValue:String = null with get,set
        member val NumberValue:Nullable<Double> = new Nullable<Double>() with get,set
        member val ListValue:ResizeArray<Struct> = new ResizeArray<Struct>() with get,set
        member val StructValue:Struct = null with get,set

    [<AllowNullLiteral>]
    type Struct() = 
        inherit Dictionary<String, Value>()

    type EndpointFlowSchedules =
        | Always = 0
        | Scheduled = 1
        | Simple = 2

    type SimpleSchedulingRuleTypes =
        | Always = 0
        | CustomerState = 1
        | Time = 2

    [<AllowNullLiteral>]
    type ScheduleDay() = 
        member val Offset:Int32 = new Int32() with get,set
        member val DayOfWeek:DayOfWeek = new DayOfWeek() with get,set

    type SchedulingRuleFrequency =
        | None = 0
        | Secondly = 1
        | Minutely = 2
        | Hourly = 3
        | Daily = 4
        | Weekly = 5
        | Monthly = 6
        | Yearly = 7

    [<AllowNullLiteral>]
    type SchedulingRule() = 
        member val Id:String = null with get,set
        member val Name:String = null with get,set
        member val Priority:Int32 = new Int32() with get,set
        member val State:String = null with get,set
        member val Source:String = null with get,set
        member val Condition:String = null with get,set
        member val SimpleRuleType:SimpleSchedulingRuleTypes = new SimpleSchedulingRuleTypes() with get,set
        member val CustomerState:String = null with get,set
        member val FlowId:String = null with get,set
        member val FlowParams:Struct = null with get,set
        member val IsAllDay:Boolean = new Boolean() with get,set
        member val StartDate:String = null with get,set
        member val StartTime:String = null with get,set
        member val EndTime:String = null with get,set
        member val BySetPosition:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val ByMonth:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val ByWeekNo:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val ByYearDay:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val ByMonthDay:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val ByDay:ResizeArray<ScheduleDay> = new ResizeArray<ScheduleDay>() with get,set
        member val ByHour:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val ByMinute:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set
        member val Interval:Int32 = new Int32() with get,set
        member val Count:Int32 = new Int32() with get,set
        member val UntilDate:String = null with get,set
        member val Frequency:SchedulingRuleFrequency = new SchedulingRuleFrequency() with get,set

    [<AllowNullLiteral>]
    type Schedule() = 
        member val TimeZoneId:String = null with get,set
        member val Inherit:Boolean = new Boolean() with get,set
        member val ForceClosed:Boolean = new Boolean() with get,set
        member val Rules:ResizeArray<SchedulingRule> = new ResizeArray<SchedulingRule>() with get,set
        member val DefaultState:String = null with get,set

    [<AllowNullLiteral>]
    type ScheduledFlow() = 
        member val StateName:String = null with get,set
        member val FlowId:String = null with get,set
        member val FlowParams:Struct = null with get,set

    type TwilioSipRegions =
        | NorthAmericaVirginia = 0
        | NorthAmericaOregon = 1
        | EuropeIreland = 2
        | EuropeFrankfurt = 3
        | AsiaPacificSingapore = 4
        | AsiaPacificTokyo = 5
        | AsiaPacificSydney = 6
        | SouthAmericaSanPaolo = 7

    type AgentStates =
        | Unknown = 0
        | Ready = 1
        | NotReady = 2
        | LoggedOut = 3
        | WrapUp = 4
        | Outgoing = 5
        | Other = 6

    type AgentStateReasons =
        | Unknown = 0
        | SetByUser = 1
        | MissedCall = 2
        | SetBySystem = 3

    type UserModes =
        | SoftPhone = 0
        | Sip = 1
        | Flow = 2
        | DataOnly = 3
        | ThirdParty = 4

    type UserManagerRoles =
        | None = 0
        | Manager = 1
        | VoicemailAndCallHistory = 2
        | Custom = 3

    type DashboardPermissions =
        | ViewFiles = 0
        | ViewNotifications = 1
        | ViewSessions = 2
        | ViewEndpoints = 3
        | ViewReports = 4
        | ViewCustomers = 5
        | ViewFlows = 6

    type UserDataFieldModes =
        | Hidden = 0
        | ReadOnly = 1
        | ReadWrite = 2

    type TagColors =
        | Magenta = 0
        | Red = 1
        | Volcano = 2
        | Orange = 3
        | Gold = 4
        | Lime = 5
        | Green = 6
        | Cyan = 7
        | Blue = 8
        | GeekBlue = 9
        | Purple = 10

    [<AllowNullLiteral>]
    type Tag() = 
        member val Id:String = null with get,set
        member val Name:String = null with get,set
        member val Color:TagColors = new TagColors() with get,set

    type ActionUrlHttpMethods =
        | GET = 0
        | POST = 1

    [<AllowNullLiteral>]
    type EndpointActionUrl() = 
        member val Id:String = null with get,set
        member val Url:String = null with get,set
        member val Method:ActionUrlHttpMethods = new ActionUrlHttpMethods() with get,set

    type CustomerVisibility =
        | None = 0
        | CurrentCustomer = 1
        | CurrentAndChildCustomers = 2

    [<AllowNullLiteral>]
    type EndpointContact() = 
        member val Id:String = null with get,set
        member val DisplayName:String = null with get,set
        member val Address:String = null with get,set

    [<AllowNullLiteral>]
    type IntegrationData() = 
        member val ThirdPartyId:String = null with get,set

    [<AllowNullLiteral>]
    type EntityIntegrationData() = 
        inherit Dictionary<String, IntegrationData>()

    type ThirdPartyPhoneSystemTypes =
        | Demo = 0
        | Sip = 1

    type TransportTypes =
        | UDP = 0
        | TLS = 1
        | TCP = 2
        | PERS = 3

    type AudioCodecTypes =
        | PCMU = 0
        | GSM = 3
        | PCMA = 8
        | G722 = 9
        | G729 = 18
        | ILBC = 97
        | AMR = 98
        | AMRWB = 99
        | SPEEX = 100
        | DTMF = 101
        | SPEEXWB = 102
        | ISACWB = 103
        | ISACSWB = 104
        | OPUS = 105
        | G7221 = 121
        | NONE = -1

    type DtmfMethods =
        | RFC2833 = 0
        | INFO = 1

    [<AllowNullLiteral>]
    type ThirdPartySipAccountSettings() = 
        member val Number:String = null with get,set
        member val Agent:String = null with get,set
        member val AuthName:String = null with get,set
        member val UserName:String = null with get,set
        member val DisplayName:String = null with get,set
        member val Password:String = null with get,set
        member val UserDomain:String = null with get,set
        member val RegistrationExpires:Int32 = new Int32() with get,set
        member val TransportType:TransportTypes = new TransportTypes() with get,set
        member val LocalIP:String = null with get,set
        member val LocalPort:Int32 = new Int32() with get,set
        member val SipServer:String = null with get,set
        member val SipServerPort:Int32 = new Int32() with get,set
        member val OutboundServer:String = null with get,set
        member val OutboundServerPort:Int32 = new Int32() with get,set
        member val StunServer:String = null with get,set
        member val StunPort:Int32 = new Int32() with get,set
        member val AudioPlaybackDeviceName:String = null with get,set
        member val AudioRecordingDeviceName:String = null with get,set
        member val AudioCodecs:ResizeArray<AudioCodecTypes> = new ResizeArray<AudioCodecTypes>() with get,set
        member val DTMFMethod:DtmfMethods = new DtmfMethods() with get,set

    [<AllowNullLiteral>]
    type ThirdPartySipSettings() = 
        member val Accounts:ResizeArray<ThirdPartySipAccountSettings> = new ResizeArray<ThirdPartySipAccountSettings>() with get,set

    [<AllowNullLiteral>]
    type ThirdPartyDemoSettings() = 
        member val Extension:String = null with get,set

    [<AllowNullLiteral>]
    type ThirdPartyPhoneSystemSettings() = 
        member val Type:ThirdPartyPhoneSystemTypes = new ThirdPartyPhoneSystemTypes() with get,set
        member val SipSettings:ThirdPartySipSettings = null with get,set
        member val DemoSettings:ThirdPartyDemoSettings = null with get,set

    [<AllowNullLiteral>]
    type AppSettings() = 
        member val EnablePhoneNumberManagement:Boolean = new Boolean() with get,set
        member val EnableDeviceManagement:Boolean = new Boolean() with get,set
        member val EnableDialer:Boolean = new Boolean() with get,set
        member val EnableCallHistory:Boolean = new Boolean() with get,set
        member val ShowFileNameInMessageCenter:Boolean = new Boolean() with get,set
        member val ChakraTheme:String = null with get,set
        member val CustomCss:String = null with get,set
        member val PageTitle:String = null with get,set
        member val StringMappings:String = null with get,set
        member val LogoutUrl:String = null with get,set
        member val PortMyNumberUrl:String = null with get,set

    [<AllowNullLiteral>]
    type EndpointInfo() = 
        inherit EntityInfo()
        ///<summary>
        ///The account ID this endpoint is associated with
        ///</summary>
        [<ApiMember(Description="The account ID this endpoint is associated with")>]
        member val AccountId:String = null with get,set

        ///<summary>
        ///The name of the account this endpoint is associated with
        ///</summary>
        [<ApiMember(Description="The name of the account this endpoint is associated with")>]
        member val AccountName:String = null with get,set

        ///<summary>
        ///The ID of the customer this endpoint is associated with
        ///</summary>
        [<ApiMember(Description="The ID of the customer this endpoint is associated with")>]
        member val CustomerId:String = null with get,set

        ///<summary>
        ///The name of the customer this endpoint is associated with
        ///</summary>
        [<ApiMember(Description="The name of the customer this endpoint is associated with")>]
        member val CustomerName:String = null with get,set

        ///<summary>
        ///The third party reference ID for the endpoint
        ///</summary>
        [<ApiMember(Description="The third party reference ID for the endpoint")>]
        member val ReferenceId:String = null with get,set

        ///<summary>
        ///The breadcrumb to the customer for this endpoint
        ///</summary>
        [<ApiMember(Description="The breadcrumb to the customer for this endpoint")>]
        member val CustomerBreadcrumb:ResizeArray<CustomerBreadcrumb> = new ResizeArray<CustomerBreadcrumb>() with get,set

        ///<summary>
        ///The display name of the endpoint
        ///</summary>
        [<ApiMember(Description="The display name of the endpoint")>]
        member val DisplayName:String = null with get,set

        ///<summary>
        ///The type of endpoint
        ///</summary>
        [<ApiMember(Description="The type of endpoint")>]
        member val Type:EndpointTypes = new EndpointTypes() with get,set

        ///<summary>
        ///Extra info for this endpoint (typically to show in grid)
        ///</summary>
        [<ApiMember(Description="Extra info for this endpoint (typically to show in grid)")>]
        member val ExtraInformation:String = null with get,set

        ///<summary>
        ///The ID of the flow to use for voice
        ///</summary>
        [<ApiMember(Description="The ID of the flow to use for voice")>]
        member val FlowId:String = null with get,set

        ///<summary>
        ///The name of the flow to use for voice
        ///</summary>
        [<ApiMember(Description="The name of the flow to use for voice")>]
        member val FlowName:String = null with get,set

        ///<summary>
        ///The params for the voice flow
        ///</summary>
        [<ApiMember(Description="The params for the voice flow")>]
        member val FlowParams:Struct = null with get,set

        ///<summary>
        ///Whether to use a single flow always or use scheduled flow system
        ///</summary>
        [<ApiMember(Description="Whether to use a single flow always or use scheduled flow system")>]
        member val FlowSchedule:EndpointFlowSchedules = new EndpointFlowSchedules() with get,set

        ///<summary>
        ///This endpoint's schedule
        ///</summary>
        [<ApiMember(Description="This endpoint's schedule")>]
        member val Schedule:Schedule = null with get,set

        ///<summary>
        ///The list of scheduled flows when using scheduling
        ///</summary>
        [<ApiMember(Description="The list of scheduled flows when using scheduling")>]
        member val ScheduledFlows:ResizeArray<ScheduledFlow> = new ResizeArray<ScheduledFlow>() with get,set

        ///<summary>
        ///Disable SMS
        ///</summary>
        [<ApiMember(Description="Disable SMS")>]
        member val DisableSms:Boolean = new Boolean() with get,set

        ///<summary>
        ///Set this to true to prevent Evo Voice from overriding the 10DLC / SMS settings for this number
        ///</summary>
        [<ApiMember(Description="Set this to true to prevent Evo Voice from overriding the 10DLC / SMS settings for this number")>]
        member val UseExternal10DlcCampaign:Boolean = new Boolean() with get,set

        ///<summary>
        ///Is this a virtual phone number?
        ///</summary>
        [<ApiMember(Description="Is this a virtual phone number?")>]
        member val IsVirtualPhoneNumber:Boolean = new Boolean() with get,set

        ///<summary>
        ///Is caller ID verified for this virtual number?
        ///</summary>
        [<ApiMember(Description="Is caller ID verified for this virtual number?")>]
        member val IsCallerIdVerified:Boolean = new Boolean() with get,set

        ///<summary>
        ///The verification code for this number
        ///</summary>
        [<ApiMember(Description="The verification code for this number")>]
        member val CallerIdVerificationCode:String = null with get,set

        ///<summary>
        ///The phone number
        ///</summary>
        [<ApiMember(Description="The phone number")>]
        member val PhoneNumber:String = null with get,set

        ///<summary>
        ///The Sid of the phone number
        ///</summary>
        [<ApiMember(Description="The Sid of the phone number")>]
        member val PhoneNumberSid:String = null with get,set

        ///<summary>
        ///The caller ID Name (CNAM) for the phone number
        ///</summary>
        [<ApiMember(Description="The caller ID Name (CNAM) for the phone number")>]
        member val CallerIdName:String = null with get,set

        ///<summary>
        ///The address SID associated with the phone number
        ///</summary>
        [<ApiMember(Description="The address SID associated with the phone number")>]
        member val AddressSid:String = null with get,set

        ///<summary>
        ///Do not touch this phone number - for BYOA accounts
        ///</summary>
        [<ApiMember(Description="Do not touch this phone number - for BYOA accounts")>]
        member val DoNotTouchPhoneNumber:Boolean = new Boolean() with get,set

        ///<summary>
        ///Is this number enrolled in a 10DLC messaging service campaign
        ///</summary>
        [<ApiMember(Description="Is this number enrolled in a 10DLC messaging service campaign")>]
        member val IsEnrolledIn10DlcService:Boolean = new Boolean() with get,set

        ///<summary>
        ///Whether we look up caller ID or not
        ///</summary>
        [<ApiMember(Description="Whether we look up caller ID or not")>]
        member val EnableCallerIdLookup:Boolean = new Boolean() with get,set

        ///<summary>
        ///The email address of the user
        ///</summary>
        [<ApiMember(Description="The email address of the user")>]
        member val UserEmailAddress:String = null with get,set

        ///<summary>
        ///The Twilio Region for the SIP endpoint
        ///</summary>
        [<ApiMember(Description="The Twilio Region for the SIP endpoint")>]
        member val SipRegion:TwilioSipRegions = new TwilioSipRegions() with get,set

        ///<summary>
        ///The Twilio Sid of the credentials for Sip
        ///</summary>
        [<ApiMember(Description="The Twilio Sid of the credentials for Sip")>]
        member val SipCredentialSid:String = null with get,set

        ///<summary>
        ///The Twilio SIP user name
        ///</summary>
        [<ApiMember(Description="The Twilio SIP user name")>]
        member val SipUserName:String = null with get,set

        ///<summary>
        ///The Twilio SIP password
        ///</summary>
        [<ApiMember(Description="The Twilio SIP password")>]
        member val SipPassword:String = null with get,set

        ///<summary>
        ///The SIP domain
        ///</summary>
        [<ApiMember(Description="The SIP domain")>]
        member val SipDomain:String = null with get,set

        ///<summary>
        ///Is emergency calling enabled on this number?
        ///</summary>
        [<ApiMember(Description="Is emergency calling enabled on this number?")>]
        member val EnableEmergencyCalling:Boolean = new Boolean() with get,set

        ///<summary>
        ///The SID of the emergency address for this number
        ///</summary>
        [<ApiMember(Description="The SID of the emergency address for this number")>]
        member val EmergencyAddressSid:String = null with get,set

        ///<summary>
        ///The ID of the phone number to use for emergency dialing
        ///</summary>
        [<ApiMember(Description="The ID of the phone number to use for emergency dialing")>]
        member val EmergencyPhoneNumberId:String = null with get,set

        ///<summary>
        ///The current agent state of this user endpoint
        ///</summary>
        [<ApiMember(Description="The current agent state of this user endpoint")>]
        member val AgentState:AgentStates = new AgentStates() with get,set

        ///<summary>
        ///The current agent state reason of this user endpoint
        ///</summary>
        [<ApiMember(Description="The current agent state reason of this user endpoint")>]
        member val AgentStateReason:AgentStateReasons = new AgentStateReasons() with get,set

        ///<summary>
        ///The mode for this user
        ///</summary>
        [<ApiMember(Description="The mode for this user")>]
        member val UserMode:UserModes = new UserModes() with get,set

        ///<summary>
        ///The ID of the file to use for voicemail greeting
        ///</summary>
        [<ApiMember(Description="The ID of the file to use for voicemail greeting")>]
        member val VoicemailGreetingId:String = null with get,set

        ///<summary>
        ///The endpoint's data
        ///</summary>
        [<ApiMember(Description="The endpoint's data")>]
        member val Data:Struct = null with get,set

        ///<summary>
        ///The email address for email endpoints
        ///</summary>
        [<ApiMember(Description="The email address for email endpoints")>]
        member val EmailAddress:String = null with get,set

        ///<summary>
        ///The first name of the user (for user endpoints)
        ///</summary>
        [<ApiMember(Description="The first name of the user (for user endpoints)")>]
        member val UserFirstName:String = null with get,set

        ///<summary>
        ///The last name of the user (for user endpoints)
        ///</summary>
        [<ApiMember(Description="The last name of the user (for user endpoints)")>]
        member val UserLastName:String = null with get,set

        ///<summary>
        ///The URL of an image for this user's avatar
        ///</summary>
        [<ApiMember(Description="The URL of an image for this user's avatar")>]
        member val AvatarUrl:String = null with get,set

        ///<summary>
        ///Does this user have manager role?
        ///</summary>
        [<ApiMember(Description="Does this user have manager role?")>]
        member val ManagerRole:UserManagerRoles = new UserManagerRoles() with get,set

        ///<summary>
        ///The list of dashboard permissions for when the manager role is custom
        ///</summary>
        [<ApiMember(Description="The list of dashboard permissions for when the manager role is custom")>]
        member val DashboardPermissions:ResizeArray<DashboardPermissions> = new ResizeArray<DashboardPermissions>() with get,set

        ///<summary>
        ///The type of visibility this user has to their own fields
        ///</summary>
        [<ApiMember(Description="The type of visibility this user has to their own fields")>]
        member val MyFieldPermissions:UserDataFieldModes = new UserDataFieldModes() with get,set

        ///<summary>
        ///The type of visibility this user has to customer fields
        ///</summary>
        [<ApiMember(Description="The type of visibility this user has to customer fields")>]
        member val CustomerFieldPermissions:UserDataFieldModes = new UserDataFieldModes() with get,set

        ///<summary>
        ///The type of visibility this user has to other user fields
        ///</summary>
        [<ApiMember(Description="The type of visibility this user has to other user fields")>]
        member val OtherUserFieldPermissions:UserDataFieldModes = new UserDataFieldModes() with get,set

        ///<summary>
        ///The type of visibility this user has to other endpoint fields
        ///</summary>
        [<ApiMember(Description="The type of visibility this user has to other endpoint fields")>]
        member val OtherEndpointFieldPermissions:UserDataFieldModes = new UserDataFieldModes() with get,set

        ///<summary>
        ///The name of this endpoint (for bots etc.)
        ///</summary>
        [<ApiMember(Description="The name of this endpoint (for bots etc.)")>]
        member val Name:String = null with get,set

        ///<summary>
        ///The list of tags for this endpoint
        ///</summary>
        [<ApiMember(Description="The list of tags for this endpoint")>]
        member val Tags:ResizeArray<Tag> = new ResizeArray<Tag>() with get,set

        ///<summary>
        ///The list of action URLs
        ///</summary>
        [<ApiMember(Description="The list of action URLs")>]
        member val ActionUrls:ResizeArray<EndpointActionUrl> = new ResizeArray<EndpointActionUrl>() with get,set

        ///<summary>
        ///The list of members in this team
        ///</summary>
        [<ApiMember(Description="The list of members in this team")>]
        member val TeamMemberIds:ResizeArray<String> = new ResizeArray<String>() with get,set

        ///<summary>
        ///Visibility of this user/team in contact lists
        ///</summary>
        [<ApiMember(Description="Visibility of this user/team in contact lists")>]
        member val ContactListVisibility:CustomerVisibility = new CustomerVisibility() with get,set

        ///<summary>
        ///The list of contacts personal to this user
        ///</summary>
        [<ApiMember(Description="The list of contacts personal to this user")>]
        member val Contacts:ResizeArray<EndpointContact> = new ResizeArray<EndpointContact>() with get,set

        ///<summary>
        ///The documo ID for this number
        ///</summary>
        [<ApiMember(Description="The documo ID for this number")>]
        member val DocumoId:String = null with get,set

        ///<summary>
        ///Integration data for this endpoint
        ///</summary>
        [<ApiMember(Description="Integration data for this endpoint")>]
        member val IntegrationData:EntityIntegrationData = null with get,set

        ///<summary>
        ///Settings for third party phone system
        ///</summary>
        [<ApiMember(Description="Settings for third party phone system")>]
        member val ThirdPartyPhoneSystemSettings:ThirdPartyPhoneSystemSettings = null with get,set

        ///<summary>
        ///Should this user override the parent customer's app settings
        ///</summary>
        [<ApiMember(Description="Should this user override the parent customer's app settings")>]
        member val OverrideAppSettings:Boolean = new Boolean() with get,set

        ///<summary>
        ///App / Portal settings for this user
        ///</summary>
        [<ApiMember(Description="App / Portal settings for this user")>]
        member val AppSettings:AppSettings = null with get,set

    [<AllowNullLiteral>]
    type AppGetUsers() = 
        inherit ListRequest<EndpointInfo>()
        member val AccountId:String = null with get,set
        member val CustomerId:String = null with get,set
        member val UserMode:Nullable<UserModes> = new Nullable<UserModes>() with get,set
        member val Name:String = null with get,set

    type SortOrders =
        | Ascend = 0
        | Descend = 1

    [<AllowNullLiteral>]
    type ListRequest<'T>() = 
        interface IGet
        ///<summary>
        ///The page of data to retrieve
        ///</summary>
        [<ApiMember(Description="The page of data to retrieve")>]
        member val Page:Int32 = new Int32() with get,set

        ///<summary>
        ///If you want all objects to be returned. This should be used with care
        ///</summary>
        [<ApiMember(Description="If you want all objects to be returned. This should be used with care")>]
        member val All:Boolean = new Boolean() with get,set

        ///<summary>
        ///The number per page to retrieve
        ///</summary>
        [<ApiMember(Description="The number per page to retrieve")>]
        member val CountPerPage:Int32 = new Int32() with get,set

        ///<summary>
        ///Specific IDs
        ///</summary>
        [<ApiMember(Description="Specific IDs")>]
        member val SpecificIds:ResizeArray<String> = new ResizeArray<String>() with get,set

        ///<summary>
        ///Specify a sort field
        ///</summary>
        [<ApiMember(Description="Specify a sort field")>]
        member val SortField:String = null with get,set

        ///<summary>
        ///Specify a sort order
        ///</summary>
        [<ApiMember(Description="Specify a sort order")>]
        member val SortOrder:SortOrders = new SortOrders() with get,set

        ///<summary>
        ///Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array
        ///</summary>
        [<ApiMember(Description="Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array")>]
        member val SimplifiedPaging:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type BillingItem() = 
        member val BaseCost:Double = new Double() with get,set
        member val RawUnitMultiplier:Double = new Double() with get,set
        member val UnitCost:Double = new Double() with get,set
        member val Allowance:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type BillingSettings() = 
        member val Base:BillingItem = null with get,set
        member val LocalNumbers:BillingItem = null with get,set
        member val TollFreeNumbers:BillingItem = null with get,set
        member val InboundVoiceCalls:BillingItem = null with get,set
        member val OutboundVoiceCalls:BillingItem = null with get,set
        member val InboundFaxes:BillingItem = null with get,set
        member val OutboundFaxes:BillingItem = null with get,set
        member val InboundSmsMessages:BillingItem = null with get,set
        member val OutboundSmsMessages:BillingItem = null with get,set

    [<AllowNullLiteral>]
    type AccountInfo() = 
        inherit EntityInfo()
        ///<summary>
        ///The name of this account
        ///</summary>
        [<ApiMember(Description="The name of this account")>]
        member val Name:String = null with get,set

        ///<summary>
        ///The ID of this account's parent
        ///</summary>
        [<ApiMember(Description="The ID of this account's parent")>]
        member val ParentAccountId:String = null with get,set

        ///<summary>
        ///The twilio account SID
        ///</summary>
        [<ApiMember(Description="The twilio account SID")>]
        member val TwilioAccountSid:String = null with get,set

        ///<summary>
        ///The ancestors of this account. Useful for breadcrumbs
        ///</summary>
        [<ApiMember(Description="The ancestors of this account. Useful for breadcrumbs")>]
        member val AncestorIds:ResizeArray<String> = new ResizeArray<String>() with get,set

        ///<summary>
        ///The max number of phone numbers this account can have
        ///</summary>
        [<ApiMember(Description="The max number of phone numbers this account can have")>]
        member val MaxPhoneNumbers:Int32 = new Int32() with get,set

        ///<summary>
        ///This account is BYOA
        ///</summary>
        [<ApiMember(Description="This account is BYOA")>]
        member val IsBYOA:Boolean = new Boolean() with get,set

        ///<summary>
        ///TrustHub Profile Sid
        ///</summary>
        [<ApiMember(Description="TrustHub Profile Sid")>]
        member val TrustHubProfileSid:String = null with get,set

        ///<summary>
        ///The ID of the logo file
        ///</summary>
        [<ApiMember(Description="The ID of the logo file")>]
        member val LogoId:String = null with get,set

        ///<summary>
        ///The URI of the logo file
        ///</summary>
        [<ApiMember(Description="The URI of the logo file")>]
        member val LogoUri:String = null with get,set

        ///<summary>
        ///The billing settings for this account
        ///</summary>
        [<ApiMember(Description="The billing settings for this account")>]
        member val BillingSettings:BillingSettings = null with get,set

    [<AllowNullLiteral>]
    type ListResponse<AccountInfo>() = 
        ///<summary>
        ///The items
        ///</summary>
        [<ApiMember(Description="The items")>]
        member val Items:ResizeArray<AccountInfo> = new ResizeArray<AccountInfo>() with get,set

        ///<summary>
        ///The total number of items
        ///</summary>
        [<ApiMember(Description="The total number of items")>]
        member val TotalCount:Int32 = new Int32() with get,set

        ///<summary>
        ///The total number of pages
        ///</summary>
        [<ApiMember(Description="The total number of pages")>]
        member val TotalPages:Int32 = new Int32() with get,set

        ///<summary>
        ///Are there more pages of items? Used with simplified paging
        ///</summary>
        [<ApiMember(Description="Are there more pages of items? Used with simplified paging")>]
        member val HasMorePages:Boolean = new Boolean() with get,set

F# AppGetUsers 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/users HTTP/1.1 
Host: evovoice.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ListResponseOfEndpointInfoWeVlXEog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">
  <HasMorePages>false</HasMorePages>
  <Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Endpoints">
    <d2p1:EndpointInfo>
      <CreatedBy>String</CreatedBy>
      <DateCreated>String</DateCreated>
      <DateLastModified>String</DateLastModified>
      <Id>String</Id>
      <LastModifiedBy>String</LastModifiedBy>
      <d2p1:AccountId>String</d2p1:AccountId>
      <d2p1:AccountName>String</d2p1:AccountName>
      <d2p1:ActionUrls>
        <d2p1:EndpointActionUrl>
          <d2p1:Id>String</d2p1:Id>
          <d2p1:Method>GET</d2p1:Method>
          <d2p1:Url>String</d2p1:Url>
        </d2p1:EndpointActionUrl>
      </d2p1:ActionUrls>
      <d2p1:AddressSid>String</d2p1:AddressSid>
      <d2p1:AgentState>Unknown</d2p1:AgentState>
      <d2p1:AgentStateReason>Unknown</d2p1:AgentStateReason>
      <d2p1:AppSettings xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Customers">
        <d4p1:ChakraTheme>String</d4p1:ChakraTheme>
        <d4p1:CustomCss>String</d4p1:CustomCss>
        <d4p1:EnableCallHistory>false</d4p1:EnableCallHistory>
        <d4p1:EnableDeviceManagement>false</d4p1:EnableDeviceManagement>
        <d4p1:EnableDialer>false</d4p1:EnableDialer>
        <d4p1:EnablePhoneNumberManagement>false</d4p1:EnablePhoneNumberManagement>
        <d4p1:LogoutUrl>String</d4p1:LogoutUrl>
        <d4p1:PageTitle>String</d4p1:PageTitle>
        <d4p1:PortMyNumberUrl>String</d4p1:PortMyNumberUrl>
        <d4p1:ShowFileNameInMessageCenter>false</d4p1:ShowFileNameInMessageCenter>
        <d4p1:StringMappings>String</d4p1:StringMappings>
      </d2p1:AppSettings>
      <d2p1:AvatarUrl>String</d2p1:AvatarUrl>
      <d2p1:CallerIdName>String</d2p1:CallerIdName>
      <d2p1:CallerIdVerificationCode>String</d2p1:CallerIdVerificationCode>
      <d2p1:ContactListVisibility>None</d2p1:ContactListVisibility>
      <d2p1:Contacts>
        <d2p1:EndpointContact>
          <d2p1:Address>String</d2p1:Address>
          <d2p1:DisplayName>String</d2p1:DisplayName>
          <d2p1:Id>String</d2p1:Id>
        </d2p1:EndpointContact>
      </d2p1:Contacts>
      <d2p1:CustomerBreadcrumb xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Customers">
        <d4p1:CustomerBreadcrumb>
          <d4p1:Id>String</d4p1:Id>
          <d4p1:Name>String</d4p1:Name>
        </d4p1:CustomerBreadcrumb>
      </d2p1:CustomerBreadcrumb>
      <d2p1:CustomerFieldPermissions>Hidden</d2p1:CustomerFieldPermissions>
      <d2p1:CustomerId>String</d2p1:CustomerId>
      <d2p1:CustomerName>String</d2p1:CustomerName>
      <d2p1:DashboardPermissions xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Authentication">
        <d4p1:DashboardPermissions>ViewFiles</d4p1:DashboardPermissions>
      </d2p1:DashboardPermissions>
      <d2p1:Data xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringValue8Ahp2kgT>
          <d4p1:Key>String</d4p1:Key>
          <d4p1:Value xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
            <d6p1:BoolValue>false</d6p1:BoolValue>
            <d6p1:ListValue>
              <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                <d4p1:KeyValueOfstringValue8Ahp2kgT>
                  <d4p1:Key>String</d4p1:Key>
                  <d4p1:Value>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue>
                      <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d4p1:KeyValueOfstringValue8Ahp2kgT>
                          <d4p1:Key>String</d4p1:Key>
                          <d4p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue i:nil="true" />
                          </d4p1:Value>
                        </d4p1:KeyValueOfstringValue8Ahp2kgT>
                      </d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue>
                      <d4p1:KeyValueOfstringValue8Ahp2kgT>
                        <d4p1:Key>String</d4p1:Key>
                        <d4p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue i:nil="true" />
                        </d4p1:Value>
                      </d4p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d4p1:Value>
                </d4p1:KeyValueOfstringValue8Ahp2kgT>
              </d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
            </d6p1:ListValue>
            <d6p1:NumberValue>0</d6p1:NumberValue>
            <d6p1:StringValue>String</d6p1:StringValue>
            <d6p1:StructValue>
              <d4p1:KeyValueOfstringValue8Ahp2kgT>
                <d4p1:Key>String</d4p1:Key>
                <d4p1:Value>
                  <d6p1:BoolValue>false</d6p1:BoolValue>
                  <d6p1:ListValue>
                    <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      <d4p1:KeyValueOfstringValue8Ahp2kgT>
                        <d4p1:Key>String</d4p1:Key>
                        <d4p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue i:nil="true" />
                        </d4p1:Value>
                      </d4p1:KeyValueOfstringValue8Ahp2kgT>
                    </d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  </d6p1:ListValue>
                  <d6p1:NumberValue>0</d6p1:NumberValue>
                  <d6p1:StringValue>String</d6p1:StringValue>
                  <d6p1:StructValue>
                    <d4p1:KeyValueOfstringValue8Ahp2kgT>
                      <d4p1:Key>String</d4p1:Key>
                      <d4p1:Value>
                        <d6p1:BoolValue>false</d6p1:BoolValue>
                        <d6p1:ListValue>
                          <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                        </d6p1:ListValue>
                        <d6p1:NumberValue>0</d6p1:NumberValue>
                        <d6p1:StringValue>String</d6p1:StringValue>
                        <d6p1:StructValue i:nil="true" />
                      </d4p1:Value>
                    </d4p1:KeyValueOfstringValue8Ahp2kgT>
                  </d6p1:StructValue>
                </d4p1:Value>
              </d4p1:KeyValueOfstringValue8Ahp2kgT>
            </d6p1:StructValue>
          </d4p1:Value>
        </d4p1:KeyValueOfstringValue8Ahp2kgT>
      </d2p1:Data>
      <d2p1:DisableSms>false</d2p1:DisableSms>
      <d2p1:DisplayName>String</d2p1:DisplayName>
      <d2p1:DoNotTouchPhoneNumber>false</d2p1:DoNotTouchPhoneNumber>
      <d2p1:DocumoId>String</d2p1:DocumoId>
      <d2p1:EmailAddress>String</d2p1:EmailAddress>
      <d2p1:EmergencyAddressSid>String</d2p1:EmergencyAddressSid>
      <d2p1:EmergencyPhoneNumberId>String</d2p1:EmergencyPhoneNumberId>
      <d2p1:EnableCallerIdLookup>false</d2p1:EnableCallerIdLookup>
      <d2p1:EnableEmergencyCalling>false</d2p1:EnableEmergencyCalling>
      <d2p1:ExtraInformation>String</d2p1:ExtraInformation>
      <d2p1:FlowId>String</d2p1:FlowId>
      <d2p1:FlowName>String</d2p1:FlowName>
      <d2p1:FlowParams xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringValue8Ahp2kgT>
          <d4p1:Key>String</d4p1:Key>
          <d4p1:Value xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
            <d6p1:BoolValue>false</d6p1:BoolValue>
            <d6p1:ListValue>
              <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                <d4p1:KeyValueOfstringValue8Ahp2kgT>
                  <d4p1:Key>String</d4p1:Key>
                  <d4p1:Value>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue>
                      <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d4p1:KeyValueOfstringValue8Ahp2kgT>
                          <d4p1:Key>String</d4p1:Key>
                          <d4p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue i:nil="true" />
                          </d4p1:Value>
                        </d4p1:KeyValueOfstringValue8Ahp2kgT>
                      </d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue>
                      <d4p1:KeyValueOfstringValue8Ahp2kgT>
                        <d4p1:Key>String</d4p1:Key>
                        <d4p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue i:nil="true" />
                        </d4p1:Value>
                      </d4p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d4p1:Value>
                </d4p1:KeyValueOfstringValue8Ahp2kgT>
              </d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
            </d6p1:ListValue>
            <d6p1:NumberValue>0</d6p1:NumberValue>
            <d6p1:StringValue>String</d6p1:StringValue>
            <d6p1:StructValue>
              <d4p1:KeyValueOfstringValue8Ahp2kgT>
                <d4p1:Key>String</d4p1:Key>
                <d4p1:Value>
                  <d6p1:BoolValue>false</d6p1:BoolValue>
                  <d6p1:ListValue>
                    <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      <d4p1:KeyValueOfstringValue8Ahp2kgT>
                        <d4p1:Key>String</d4p1:Key>
                        <d4p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue i:nil="true" />
                        </d4p1:Value>
                      </d4p1:KeyValueOfstringValue8Ahp2kgT>
                    </d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  </d6p1:ListValue>
                  <d6p1:NumberValue>0</d6p1:NumberValue>
                  <d6p1:StringValue>String</d6p1:StringValue>
                  <d6p1:StructValue>
                    <d4p1:KeyValueOfstringValue8Ahp2kgT>
                      <d4p1:Key>String</d4p1:Key>
                      <d4p1:Value>
                        <d6p1:BoolValue>false</d6p1:BoolValue>
                        <d6p1:ListValue>
                          <d4p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                        </d6p1:ListValue>
                        <d6p1:NumberValue>0</d6p1:NumberValue>
                        <d6p1:StringValue>String</d6p1:StringValue>
                        <d6p1:StructValue i:nil="true" />
                      </d4p1:Value>
                    </d4p1:KeyValueOfstringValue8Ahp2kgT>
                  </d6p1:StructValue>
                </d4p1:Value>
              </d4p1:KeyValueOfstringValue8Ahp2kgT>
            </d6p1:StructValue>
          </d4p1:Value>
        </d4p1:KeyValueOfstringValue8Ahp2kgT>
      </d2p1:FlowParams>
      <d2p1:FlowSchedule>Always</d2p1:FlowSchedule>
      <d2p1:IntegrationData xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringIntegrationDataY_SkqLnhh>
          <d4p1:Key>String</d4p1:Key>
          <d4p1:Value xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Integrations">
            <d6p1:ThirdPartyId>String</d6p1:ThirdPartyId>
          </d4p1:Value>
        </d4p1:KeyValueOfstringIntegrationDataY_SkqLnhh>
      </d2p1:IntegrationData>
      <d2p1:IsCallerIdVerified>false</d2p1:IsCallerIdVerified>
      <d2p1:IsEnrolledIn10DlcService>false</d2p1:IsEnrolledIn10DlcService>
      <d2p1:IsVirtualPhoneNumber>false</d2p1:IsVirtualPhoneNumber>
      <d2p1:ManagerRole>None</d2p1:ManagerRole>
      <d2p1:MyFieldPermissions>Hidden</d2p1:MyFieldPermissions>
      <d2p1:Name>String</d2p1:Name>
      <d2p1:OtherEndpointFieldPermissions>Hidden</d2p1:OtherEndpointFieldPermissions>
      <d2p1:OtherUserFieldPermissions>Hidden</d2p1:OtherUserFieldPermissions>
      <d2p1:OverrideAppSettings>false</d2p1:OverrideAppSettings>
      <d2p1:PhoneNumber>String</d2p1:PhoneNumber>
      <d2p1:PhoneNumberSid>String</d2p1:PhoneNumberSid>
      <d2p1:ReferenceId>String</d2p1:ReferenceId>
      <d2p1:Schedule xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Scheduling">
        <d4p1:DefaultState>String</d4p1:DefaultState>
        <d4p1:ForceClosed>false</d4p1:ForceClosed>
        <d4p1:Inherit>false</d4p1:Inherit>
        <d4p1:Rules>
          <d4p1:SchedulingRule>
            <d4p1:ByDay>
              <d4p1:ScheduleDay>
                <d4p1:DayOfWeek>Sunday</d4p1:DayOfWeek>
                <d4p1:Offset>0</d4p1:Offset>
              </d4p1:ScheduleDay>
            </d4p1:ByDay>
            <d4p1:ByHour xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:ByHour>
            <d4p1:ByMinute xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:ByMinute>
            <d4p1:ByMonth xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:ByMonth>
            <d4p1:ByMonthDay xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:ByMonthDay>
            <d4p1:BySetPosition xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:BySetPosition>
            <d4p1:ByWeekNo xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:ByWeekNo>
            <d4p1:ByYearDay xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:int>0</d7p1:int>
            </d4p1:ByYearDay>
            <d4p1:Condition>String</d4p1:Condition>
            <d4p1:Count>0</d4p1:Count>
            <d4p1:CustomerState>String</d4p1:CustomerState>
            <d4p1:EndTime>String</d4p1:EndTime>
            <d4p1:FlowId>String</d4p1:FlowId>
            <d4p1:FlowParams xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                <d7p1:Key>String</d7p1:Key>
                <d7p1:Value xmlns:d9p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
                  <d9p1:BoolValue>false</d9p1:BoolValue>
                  <d9p1:ListValue>
                    <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      <d7p1:KeyValueOfstringValue8Ahp2kgT>
                        <d7p1:Key>String</d7p1:Key>
                        <d7p1:Value>
                          <d9p1:BoolValue>false</d9p1:BoolValue>
                          <d9p1:ListValue>
                            <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value>
                                  <d9p1:BoolValue>false</d9p1:BoolValue>
                                  <d9p1:ListValue>
                                    <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                                  </d9p1:ListValue>
                                  <d9p1:NumberValue>0</d9p1:NumberValue>
                                  <d9p1:StringValue>String</d9p1:StringValue>
                                  <d9p1:StructValue i:nil="true" />
                                </d7p1:Value>
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d9p1:ListValue>
                          <d9p1:NumberValue>0</d9p1:NumberValue>
                          <d9p1:StringValue>String</d9p1:StringValue>
                          <d9p1:StructValue>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value>
                                <d9p1:BoolValue>false</d9p1:BoolValue>
                                <d9p1:ListValue>
                                  <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                                </d9p1:ListValue>
                                <d9p1:NumberValue>0</d9p1:NumberValue>
                                <d9p1:StringValue>String</d9p1:StringValue>
                                <d9p1:StructValue i:nil="true" />
                              </d7p1:Value>
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d9p1:StructValue>
                        </d7p1:Value>
                      </d7p1:KeyValueOfstringValue8Ahp2kgT>
                    </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  </d9p1:ListValue>
                  <d9p1:NumberValue>0</d9p1:NumberValue>
                  <d9p1:StringValue>String</d9p1:StringValue>
                  <d9p1:StructValue>
                    <d7p1:KeyValueOfstringValue8Ahp2kgT>
                      <d7p1:Key>String</d7p1:Key>
                      <d7p1:Value>
                        <d9p1:BoolValue>false</d9p1:BoolValue>
                        <d9p1:ListValue>
                          <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value>
                                <d9p1:BoolValue>false</d9p1:BoolValue>
                                <d9p1:ListValue>
                                  <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                                </d9p1:ListValue>
                                <d9p1:NumberValue>0</d9p1:NumberValue>
                                <d9p1:StringValue>String</d9p1:StringValue>
                                <d9p1:StructValue i:nil="true" />
                              </d7p1:Value>
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d9p1:ListValue>
                        <d9p1:NumberValue>0</d9p1:NumberValue>
                        <d9p1:StringValue>String</d9p1:StringValue>
                        <d9p1:StructValue>
                          <d7p1:KeyValueOfstringValue8Ahp2kgT>
                            <d7p1:Key>String</d7p1:Key>
                            <d7p1:Value>
                              <d9p1:BoolValue>false</d9p1:BoolValue>
                              <d9p1:ListValue>
                                <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                              </d9p1:ListValue>
                              <d9p1:NumberValue>0</d9p1:NumberValue>
                              <d9p1:StringValue>String</d9p1:StringValue>
                              <d9p1:StructValue i:nil="true" />
                            </d7p1:Value>
                          </d7p1:KeyValueOfstringValue8Ahp2kgT>
                        </d9p1:StructValue>
                      </d7p1:Value>
                    </d7p1:KeyValueOfstringValue8Ahp2kgT>
                  </d9p1:StructValue>
                </d7p1:Value>
              </d7p1:KeyValueOfstringValue8Ahp2kgT>
            </d4p1:FlowParams>
            <d4p1:Frequency>None</d4p1:Frequency>
            <d4p1:Id>String</d4p1:Id>
            <d4p1:Interval>0</d4p1:Interval>
            <d4p1:IsAllDay>false</d4p1:IsAllDay>
            <d4p1:Name>String</d4p1:Name>
            <d4p1:Priority>0</d4p1:Priority>
            <d4p1:SimpleRuleType>Always</d4p1:SimpleRuleType>
            <d4p1:Source>String</d4p1:Source>
            <d4p1:StartDate>String</d4p1:StartDate>
            <d4p1:StartTime>String</d4p1:StartTime>
            <d4p1:State>String</d4p1:State>
            <d4p1:UntilDate>String</d4p1:UntilDate>
          </d4p1:SchedulingRule>
        </d4p1:Rules>
        <d4p1:TimeZoneId>String</d4p1:TimeZoneId>
      </d2p1:Schedule>
      <d2p1:ScheduledFlows>
        <d2p1:ScheduledFlow>
          <d2p1:FlowId>String</d2p1:FlowId>
          <d2p1:FlowParams xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:KeyValueOfstringValue8Ahp2kgT>
              <d6p1:Key>String</d6p1:Key>
              <d6p1:Value xmlns:d8p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
                <d8p1:BoolValue>false</d8p1:BoolValue>
                <d8p1:ListValue>
                  <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d6p1:KeyValueOfstringValue8Ahp2kgT>
                      <d6p1:Key>String</d6p1:Key>
                      <d6p1:Value>
                        <d8p1:BoolValue>false</d8p1:BoolValue>
                        <d8p1:ListValue>
                          <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d6p1:KeyValueOfstringValue8Ahp2kgT>
                              <d6p1:Key>String</d6p1:Key>
                              <d6p1:Value>
                                <d8p1:BoolValue>false</d8p1:BoolValue>
                                <d8p1:ListValue>
                                  <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                                </d8p1:ListValue>
                                <d8p1:NumberValue>0</d8p1:NumberValue>
                                <d8p1:StringValue>String</d8p1:StringValue>
                                <d8p1:StructValue i:nil="true" />
                              </d6p1:Value>
                            </d6p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d8p1:ListValue>
                        <d8p1:NumberValue>0</d8p1:NumberValue>
                        <d8p1:StringValue>String</d8p1:StringValue>
                        <d8p1:StructValue>
                          <d6p1:KeyValueOfstringValue8Ahp2kgT>
                            <d6p1:Key>String</d6p1:Key>
                            <d6p1:Value>
                              <d8p1:BoolValue>false</d8p1:BoolValue>
                              <d8p1:ListValue>
                                <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                              </d8p1:ListValue>
                              <d8p1:NumberValue>0</d8p1:NumberValue>
                              <d8p1:StringValue>String</d8p1:StringValue>
                              <d8p1:StructValue i:nil="true" />
                            </d6p1:Value>
                          </d6p1:KeyValueOfstringValue8Ahp2kgT>
                        </d8p1:StructValue>
                      </d6p1:Value>
                    </d6p1:KeyValueOfstringValue8Ahp2kgT>
                  </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d8p1:ListValue>
                <d8p1:NumberValue>0</d8p1:NumberValue>
                <d8p1:StringValue>String</d8p1:StringValue>
                <d8p1:StructValue>
                  <d6p1:KeyValueOfstringValue8Ahp2kgT>
                    <d6p1:Key>String</d6p1:Key>
                    <d6p1:Value>
                      <d8p1:BoolValue>false</d8p1:BoolValue>
                      <d8p1:ListValue>
                        <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d6p1:KeyValueOfstringValue8Ahp2kgT>
                            <d6p1:Key>String</d6p1:Key>
                            <d6p1:Value>
                              <d8p1:BoolValue>false</d8p1:BoolValue>
                              <d8p1:ListValue>
                                <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                              </d8p1:ListValue>
                              <d8p1:NumberValue>0</d8p1:NumberValue>
                              <d8p1:StringValue>String</d8p1:StringValue>
                              <d8p1:StructValue i:nil="true" />
                            </d6p1:Value>
                          </d6p1:KeyValueOfstringValue8Ahp2kgT>
                        </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d8p1:ListValue>
                      <d8p1:NumberValue>0</d8p1:NumberValue>
                      <d8p1:StringValue>String</d8p1:StringValue>
                      <d8p1:StructValue>
                        <d6p1:KeyValueOfstringValue8Ahp2kgT>
                          <d6p1:Key>String</d6p1:Key>
                          <d6p1:Value>
                            <d8p1:BoolValue>false</d8p1:BoolValue>
                            <d8p1:ListValue>
                              <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                            </d8p1:ListValue>
                            <d8p1:NumberValue>0</d8p1:NumberValue>
                            <d8p1:StringValue>String</d8p1:StringValue>
                            <d8p1:StructValue i:nil="true" />
                          </d6p1:Value>
                        </d6p1:KeyValueOfstringValue8Ahp2kgT>
                      </d8p1:StructValue>
                    </d6p1:Value>
                  </d6p1:KeyValueOfstringValue8Ahp2kgT>
                </d8p1:StructValue>
              </d6p1:Value>
            </d6p1:KeyValueOfstringValue8Ahp2kgT>
          </d2p1:FlowParams>
          <d2p1:StateName>String</d2p1:StateName>
        </d2p1:ScheduledFlow>
      </d2p1:ScheduledFlows>
      <d2p1:SipCredentialSid>String</d2p1:SipCredentialSid>
      <d2p1:SipDomain>String</d2p1:SipDomain>
      <d2p1:SipPassword>String</d2p1:SipPassword>
      <d2p1:SipRegion>NorthAmericaVirginia</d2p1:SipRegion>
      <d2p1:SipUserName>String</d2p1:SipUserName>
      <d2p1:Tags xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Settings">
        <d4p1:Tag>
          <d4p1:Color>Magenta</d4p1:Color>
          <d4p1:Id>String</d4p1:Id>
          <d4p1:Name>String</d4p1:Name>
        </d4p1:Tag>
      </d2p1:Tags>
      <d2p1:TeamMemberIds xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>String</d4p1:string>
      </d2p1:TeamMemberIds>
      <d2p1:ThirdPartyPhoneSystemSettings>
        <d2p1:DemoSettings>
          <d2p1:Extension>String</d2p1:Extension>
        </d2p1:DemoSettings>
        <d2p1:SipSettings>
          <d2p1:Accounts>
            <d2p1:ThirdPartyPhoneSystemSettings.ThirdPartySipSettings.ThirdPartySipAccountSettings>
              <d2p1:Agent>String</d2p1:Agent>
              <d2p1:AudioCodecs>
                <d2p1:ThirdPartyPhoneSystemSettings.ThirdPartySipSettings.AudioCodecTypes>PCMU</d2p1:ThirdPartyPhoneSystemSettings.ThirdPartySipSettings.AudioCodecTypes>
              </d2p1:AudioCodecs>
              <d2p1:AudioPlaybackDeviceName>String</d2p1:AudioPlaybackDeviceName>
              <d2p1:AudioRecordingDeviceName>String</d2p1:AudioRecordingDeviceName>
              <d2p1:AuthName>String</d2p1:AuthName>
              <d2p1:DTMFMethod>RFC2833</d2p1:DTMFMethod>
              <d2p1:DisplayName>String</d2p1:DisplayName>
              <d2p1:LocalIP>String</d2p1:LocalIP>
              <d2p1:LocalPort>0</d2p1:LocalPort>
              <d2p1:Number>String</d2p1:Number>
              <d2p1:OutboundServer>String</d2p1:OutboundServer>
              <d2p1:OutboundServerPort>0</d2p1:OutboundServerPort>
              <d2p1:Password>String</d2p1:Password>
              <d2p1:RegistrationExpires>0</d2p1:RegistrationExpires>
              <d2p1:SipServer>String</d2p1:SipServer>
              <d2p1:SipServerPort>0</d2p1:SipServerPort>
              <d2p1:StunPort>0</d2p1:StunPort>
              <d2p1:StunServer>String</d2p1:StunServer>
              <d2p1:TransportType>UDP</d2p1:TransportType>
              <d2p1:UserDomain>String</d2p1:UserDomain>
              <d2p1:UserName>String</d2p1:UserName>
            </d2p1:ThirdPartyPhoneSystemSettings.ThirdPartySipSettings.ThirdPartySipAccountSettings>
          </d2p1:Accounts>
        </d2p1:SipSettings>
        <d2p1:Type>Demo</d2p1:Type>
      </d2p1:ThirdPartyPhoneSystemSettings>
      <d2p1:Type>PhoneNumber</d2p1:Type>
      <d2p1:UseExternal10DlcCampaign>false</d2p1:UseExternal10DlcCampaign>
      <d2p1:UserEmailAddress>String</d2p1:UserEmailAddress>
      <d2p1:UserFirstName>String</d2p1:UserFirstName>
      <d2p1:UserLastName>String</d2p1:UserLastName>
      <d2p1:UserMode>SoftPhone</d2p1:UserMode>
      <d2p1:VoicemailGreetingId>String</d2p1:VoicemailGreetingId>
    </d2p1:EndpointInfo>
  </Items>
  <TotalCount>0</TotalCount>
  <TotalPages>0</TotalPages>
</ListResponseOfEndpointInfoWeVlXEog>