Requires any of the roles: | SystemAdministrator, Manager, Customer |
POST | /addresses/{addressId} |
---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Voice.Api.Settings
Namespace Global
Namespace Voice.Api.Settings
Public Partial Class AddressInfo
Public Overridable Property Id As String
Public Overridable Property FriendlyName As String
Public Overridable Property EmergencyEnabled As Boolean
Public Overridable Property CustomerName As String
Public Overridable Property Street As String
Public Overridable Property City As String
Public Overridable Property Region As String
Public Overridable Property PostalCode As String
Public Overridable Property ISOCountry As String
End Class
'''<Summary>
'''Update a business address to be used with e911
'''</Summary>
<Api(Description:="Update a business address to be used with e911")>
Public Partial Class PatchAddress
Public Overridable Property AccountId As String
Public Overridable Property AddressId As String
Public Overridable Property FriendlyName As String
Public Overridable Property EmergencyEnabled As Boolean
Public Overridable Property CustomerName As String
Public Overridable Property Street As String
Public Overridable Property City As String
Public Overridable Property Region As String
Public Overridable Property PostalCode As String
Public Overridable Property ISOCountry As String
End Class
End Namespace
End Namespace
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /addresses/{addressId} HTTP/1.1
Host: team.evovoice.io
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"accountId":"String","addressId":"String","friendlyName":"String","emergencyEnabled":false,"customerName":"String","street":"String","city":"String","region":"String","postalCode":"String","isoCountry":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"id":"String","friendlyName":"String","emergencyEnabled":false,"customerName":"String","street":"String","city":"String","region":"String","postalCode":"String","isoCountry":"String"}