| PUT | /v4/links | ||
|---|---|---|---|
| PUT | /v4/links/{Id} |
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 PutUserLinkResponse() =
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 PutUserLinkRequest() =
inherit V4BaseRequest()
[<DataMember(Name="id")>]
member val Id: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
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /v4/links HTTP/1.1
Host: shortlinks-api.qa.platform.georiot.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"id":"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"}}}