| GET | /v2/settings/apple-services |
|---|
namespace Booklinker.API.ServiceModel.DTOs.AppleServices
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
type AffiliateSettingsOption =
| None = 0
| Custom = 1
| Booklinker = 2
type EnrollmentState =
| None = 0
| Pending = 1
| Approved = 2
| Rejected = 3
[<DataContract>]
[<AllowNullLiteral>]
type GetAppleServicesSettingsResponseData() =
[<DataMember(Name="selectedOption")>]
member val SelectedOption:AffiliateSettingsOption = new AffiliateSettingsOption() with get,set
[<DataMember(Name="username")>]
member val Username:String = null with get,set
[<DataMember(Name="userEmail")>]
member val UserEmail:String = null with get,set
[<DataMember(Name="booklinkerToken")>]
member val BooklinkerToken:String = null with get,set
[<DataMember(Name="customToken")>]
member val CustomToken:String = null with get,set
[<DataMember(Name="enrollmentState")>]
member val EnrollmentState:EnrollmentState = new EnrollmentState() with get,set
[<DataContract>]
[<AllowNullLiteral>]
type GetAppleServicesSettingsResponse() =
inherit V2BaseResponse()
[<DataMember(Name="data")>]
member val Data:GetAppleServicesSettingsResponseData = null with get,set
[<DataContract>]
[<AllowNullLiteral>]
type V2BaseRequest() =
class end
[<DataContract>]
[<AllowNullLiteral>]
type GetAppleServicesSettingsRequest() =
inherit V2BaseRequest()
F# GetAppleServicesSettingsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v2/settings/apple-services HTTP/1.1 Host: api.booklinker.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
data:
{
selectedOption: none,
username: String,
userEmail: String,
booklinkerToken: String,
customToken: String,
enrollmentState: none
},
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}