All Verbs | /account/settings | ||
---|---|---|---|
GET POST | /AccountSettings |
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports MyApp.ServiceModel
Namespace Global
Namespace MyApp.ServiceModel
Public Partial Class AccountSettings
Implements IPost
Public Overridable Property DisplayName As String
Public Overridable Property FirstName As String
Public Overridable Property LastName As String
Public Overridable Property Company As String
Public Overridable Property PhoneNumber As String
Public Overridable Property ShowCard As Boolean
Public Overridable Property Brand As String
Public Overridable Property Last4 As String
Public Overridable Property CardNumber As String
Public Overridable Property Cvc As String
Public Overridable Property ExpMonth As Integer
Public Overridable Property ExpYear As Integer
End Class
End Namespace
End Namespace
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /account/settings HTTP/1.1
Host: account.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<AccountSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<Brand>String</Brand>
<CardNumber>String</CardNumber>
<Company>String</Company>
<Cvc>String</Cvc>
<DisplayName>String</DisplayName>
<ExpMonth>0</ExpMonth>
<ExpYear>0</ExpYear>
<FirstName>String</FirstName>
<Last4>String</Last4>
<LastName>String</LastName>
<PhoneNumber>String</PhoneNumber>
<ShowCard>false</ShowCard>
</AccountSettings>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AccountSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel"> <Brand>String</Brand> <CardNumber>String</CardNumber> <Company>String</Company> <Cvc>String</Cvc> <DisplayName>String</DisplayName> <ExpMonth>0</ExpMonth> <ExpYear>0</ExpYear> <FirstName>String</FirstName> <Last4>String</Last4> <LastName>String</LastName> <PhoneNumber>String</PhoneNumber> <ShowCard>false</ShowCard> </AccountSettings>