ShortlinksAPI

<back to all web services

PostUserLinkRequest

Requires Authentication
The following routes are available for this service:
POST/v4/links
namespace Geniuslink.Shortlinks.Constants

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<DataContract>]
    [<AllowNullLiteral>]
    type V4BaseResponse() = 
        [<DataMember(Name="status")>]
        member val ResponseStatus:ResponseStatus = null with get,set

    [<DataContract>]
    [<AllowNullLiteral>]
    type PostUserLinkResponse() = 
        inherit V4BaseResponse()

    [<DataContract>]
    [<AllowNullLiteral>]
    type V4BaseRequest() = 
        class end

    type LinkType =
        | None = 0
        | Simple = 1
        | Split = 2
        | Interstitial = 3
        | Advanced = 4
        | Collection = 5

    [<DataContract>]
    [<AllowNullLiteral>]
    type PostUserLinkRequest() = 
        inherit V4BaseRequest()
        [<DataMember(Name="baseCode")>]
        member val BaseCode:String = null with get,set

        [<DataMember(Name="linkType")>]
        member val LinkType:LinkType = new LinkType() with get,set

        [<DataMember(Name="typeDefinitionPublicId")>]
        member val TypeDefinitionPublicId:String = null with get,set

F# PostUserLinkRequest DTOs

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

HTTP + CSV

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

POST /v4/links HTTP/1.1 
Host: shortlinks-api.qa.platform.georiot.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"baseCode":"String","linkType":"None","typeDefinitionPublicId":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"status":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}