| PUT | /v1/account |
|---|
namespace Booklinker.API.ServiceModel.V2.Requests
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<DataContract>]
[<AllowNullLiteral>]
type V2BaseResponse() =
[<DataMember(Name="responseStatus")>]
member val ResponseStatus:ResponseStatus = null with get,set
[<DataContract>]
[<AllowNullLiteral>]
type PutAccountResponseData() =
[<DataMember(Name="oneTimeToken")>]
member val OneTimeToken:String = null with get,set
[<DataContract>]
[<AllowNullLiteral>]
type PutAccountResponse() =
inherit V2BaseResponse()
[<DataMember(Name="data")>]
member val Data:PutAccountResponseData = null with get,set
type SignatureAppearance =
| None = 0
| Text = 1
| Upload = 2
[<DataContract>]
[<AllowNullLiteral>]
type PutAccountRequest() =
[<DataMember(Name="emailAddress")>]
member val EmailAddress:String = null with get,set
[<DataMember(Name="fullName")>]
member val FullName:String = null with get,set
[<DataMember(Name="profileImageId")>]
member val ProfileImageId:String = null with get,set
[<DataMember(Name="signatureImageId")>]
member val SignatureImageId:String = null with get,set
[<DataMember(Name="signatureFont")>]
member val SignatureFont:String = null with get,set
[<DataMember(Name="signatureAppearance")>]
member val SignatureAppearance:SignatureAppearance = new SignatureAppearance() with get,set
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.
PUT /v1/account HTTP/1.1
Host: api.booklinker.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"newEmail":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"success":false,"oneTimeToken":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}