Booklinker.API

<back to all web services

PostUnclaimedLinkCreationRequest

The following routes are available for this service:
POST/v1/links/unclaimed
import Foundation
import ServiceStack

public class PostUnclaimedLinkCreationRequest : PostLinkCreationRequestBase
{
    // @DataMember(Name="affiliatePrograms")
    public var affiliatePrograms:[AffiliateTokens]

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case affiliatePrograms
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        affiliatePrograms = try container.decodeIfPresent([AffiliateTokens].self, forKey: .affiliatePrograms) ?? []
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if affiliatePrograms != nil { try container.encode(affiliatePrograms, forKey: .affiliatePrograms) }
    }
}

// @DataContract
public class PostLinkCreationRequestBase : Codable
{
    // @DataMember(Name="url")
    // @ApiMember(IsRequired=true)
    public var url:String

    // @DataMember(Name="domain")
    public var domain:String

    // @DataMember(Name="parameterKeyValues")
    public var parameterKeyValues:[String:String]

    required public init(){}
}

// @DataContract
public class AffiliateTokens : Codable
{
    // @DataMember(Name="guid")
    public var guid:String

    // @DataMember(Name="programGuid")
    public var programGuid:String

    // @DataMember(Name="affiliateTokens")
    public var affiliateTokens:[String:String]

    required public init(){}
}

// @DataContract
public class PostLinkCreationResponse : Codable
{
    // @DataMember(Name="success")
    public var success:Bool

    // @DataMember(Name="linkResult")
    public var linkResult:String

    // @DataMember(Name="destinations")
    public var destinations:[ProductMetadata]

    // @DataMember(Name="responseStatus")
    public var responseStatus:ResponseStatus

    required public init(){}
}

// @DataContract
public class ProductMetadata : ProductMetadata
{
    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 ProductMetadata : Codable
{
    // @DataMember(Name="title")
    public var title:String

    // @DataMember(Name="author")
    public var author:String

    // @DataMember(Name="url")
    public var url:Uri

    // @DataMember(Name="description")
    public var description:String

    // @DataMember(Name="retailer")
    public var retailer:String

    // @DataMember(Name="productImages")
    public var productImages:[String:Uri]

    required public init(){}
}


Swift PostUnclaimedLinkCreationRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /v1/links/unclaimed HTTP/1.1 
Host: api.booklinker.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"affiliatePrograms":[{"affiliateTokens":{"String":"String"}}],"url":"String","domain":"String","parameterKeyValues":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"success":false,"linkResult":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}