POST | /profile/{BeeNumber}/basic-information |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports NAV.ServiceModel
Namespace Global
Namespace NAV.ServiceModel
Public Partial Class AddressCreateViewModel
Public Overridable Property AddressLine1 As String
Public Overridable Property AddressLine2 As String
Public Overridable Property AddressLine3 As String
Public Overridable Property City As String
Public Overridable Property StateCode As String
Public Overridable Property PostalCode As String
Public Overridable Property CountryCode As String
End Class
Public Partial Class ProfileBasicInformationCreate
Implements IPost
Public Overridable Property BeeNumber As Decimal
Public Overridable Property PrimaryPhone As String
Public Overridable Property BirthDate As Date
Public Overridable Property Address As AddressCreateViewModel
Public Overridable Property BeeNumberMentor As Nullable(Of Decimal)
End Class
Public Partial Class ProfileBasicInformationCreateResponse
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
End Namespace
VB.NET ProfileBasicInformationCreate DTOs
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 /profile/{BeeNumber}/basic-information HTTP/1.1
Host: extensions.avon.ca
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"beeNumber":0,"primaryPhone":"String","birthDate":"0001-01-01T00:00:00.0000000","address":{"addressLine1":"String","addressLine2":"String","addressLine3":"String","city":"String","stateCode":"String","postalCode":"String","countryCode":"String"},"beeNumberMentor":0}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}