Booklinker.API

<back to all web services

PostPendingLinkRequest

Requires Authentication
The following routes are available for this service:
POST/v1/links/pending

// @DataContract
export class ProductMetadata extends ProductMetadata
{

    public constructor(init?: Partial<ProductMetadata>) { super(init); (Object as any).assign(this, init); }
}

// @DataContract
export class PostPendingLinkResponse
{
    // @DataMember(Name="url")
    public url: string;

    // @DataMember(Name="productMetadata")
    public productMetadata: ProductMetadata;

    // @DataMember(Name="domain")
    public domain: string;

    // @DataMember(Name="code")
    public code: string;

    // @DataMember(Name="baseDomain")
    public baseDomain: string;

    // @DataMember(Name="baseCode")
    public baseCode: string;

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

    public constructor(init?: Partial<PostPendingLinkResponse>) { (Object as any).assign(this, init); }
}

// @DataContract
export class PostPendingLinkRequest
{
    // @DataMember(Name="token")
    // @ApiMember(IsRequired=true, Name="token")
    public token: string;

    public constructor(init?: Partial<PostPendingLinkRequest>) { (Object as any).assign(this, init); }
}

// @DataContract
export class ProductMetadata
{
    // @DataMember(Name="title")
    public title: string;

    // @DataMember(Name="author")
    public author: string;

    // @DataMember(Name="url")
    public url: string;

    // @DataMember(Name="description")
    public description: string;

    // @DataMember(Name="retailer")
    public retailer: string;

    // @DataMember(Name="productImages")
    public productImages: { [index:string]: string; };

    public constructor(init?: Partial<ProductMetadata>) { (Object as any).assign(this, init); }
}

TypeScript PostPendingLinkRequest DTOs

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

HTTP + OTHER

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

POST /v1/links/pending HTTP/1.1 
Host: api.booklinker.com 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"token":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"url":"String","productMetadata":{"title":"String","author":"String","description":"String","retailer":"String"},"domain":"String","code":"String","baseDomain":"String","baseCode":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}