| All Verbs | /portal/schedule | 
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Voice.Api.App.Portal
Namespace Global
    Namespace Voice.Api.App.Portal
        Public Partial Class AppGetScheduleInformation
            Public Overridable Property AccountId As String
            Public Overridable Property CustomerId As String
            Public Overridable Property EndpointId As String
        End Class
        Public Partial Class AppScheduleInformation
            Public Overridable Property TimeZoneId As String
            Public Overridable Property CustomerStates As List(Of String)
        End Class
    End Namespace
End Namespace
VB.NET AppGetScheduleInformation DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /portal/schedule HTTP/1.1 
Host: evovoice.io 
Accept: application/json
Content-Type: application/json
Content-Length: length
{"accountId":"String","customerId":"String","endpointId":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"timeZoneId":"String","customerStates":["String"]}