WS-RESTRICTED_API Host [RESTRICTED_API] : D5290-staging

<back to all web services

url_shortener

URL Shortener
The following routes are available for this service:
GET,POST/url_shortener
namespace WS_RESTRICTED_API

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

    [<AllowNullLiteral>]
    type url_shortenerResponse() = 
        member val tiny_url:String = null with get,set
        member val original_url:String = null with get,set
        member val created_date:DateTime = new DateTime() with get,set
        member val expiry_date:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val collision:Nullable<Int32> = new Nullable<Int32>() with get,set

    type operationType =
        | NoOperation = 0
        | ShortenUrl = 1
        | GetOriginalUrl = 2
        | RedirectUrl = 3

    [<AllowNullLiteral>]
    type url_shortener() = 
        ///<summary>
        ///operation type
        ///</summary>
        [<ApiMember(DataType="string", Description="operation type", IsRequired=true, Name="operation", ParameterType="body")>]
        member val operation:Nullable<operationType> = new Nullable<operationType>() with get,set

        ///<summary>
        ///url
        ///</summary>
        [<ApiMember(DataType="string", Description="url", IsRequired=true, Name="url", ParameterType="body")>]
        member val url:String = null with get,set

        ///<summary>
        ///days to expire
        ///</summary>
        [<ApiMember(DataType="string", Description="days to expire", Name="days", ParameterType="body")>]
        member val days:Nullable<Double> = new Nullable<Double>() with get,set

F# url_shortener 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 /url_shortener HTTP/1.1 
Host: milliet.io 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"operation":"0x4E71","url":"String","days":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"tiny_url":"String","original_url":"String","created_date":"0001-01-01T00:00:00.0000000","expiry_date":"0001-01-01T00:00:00.0000000","collision":0}