| POST | /v1/pz-users |
|---|
import Foundation
import ServiceStack
// @DataContract
public class PostAppleServicesUserRequest : V2BaseRequest
{
// @DataMember(Name="email")
public var email:String
// @DataMember(Name="username")
public var username:String
// @DataMember(Name="termsAndConditionsId")
public var termsAndConditionsId:String
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case email
case username
case termsAndConditionsId
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
email = try container.decodeIfPresent(String.self, forKey: .email)
username = try container.decodeIfPresent(String.self, forKey: .username)
termsAndConditionsId = try container.decodeIfPresent(String.self, forKey: .termsAndConditionsId)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if email != nil { try container.encode(email, forKey: .email) }
if username != nil { try container.encode(username, forKey: .username) }
if termsAndConditionsId != nil { try container.encode(termsAndConditionsId, forKey: .termsAndConditionsId) }
}
}
// @DataContract
public class V2BaseRequest : Codable
{
required public init(){}
}
// @DataContract
public class PostAppleServicesUserResponse : V2BaseResponse
{
required public init(){ super.init() }
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
}
}
// @DataContract
public class V2BaseResponse : Codable
{
// @DataMember(Name="responseStatus")
public var responseStatus:ResponseStatus
required public init(){}
}
Swift PostAppleServicesUserRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/pz-users HTTP/1.1
Host: api.booklinker.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"email":"String","username":"String","termsAndConditionsId":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"success":false,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}