All Verbs | /current/{Key}/{TenantKey} |
---|
namespace HarbourAssist.Api.MicroApp.Domain
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type GetCurrentMicroAppRequest() =
member val Key:String = null with get,set
member val TenantKey:String = null with get,set
[<AllowNullLiteral>]
type MicroApp() =
member val Id:Int64 = new Int64() with get,set
member val Name:String = null with get,set
member val Key:String = null with get,set
member val Version:Int32 = new Int32() with get,set
member val Current:Boolean = new Boolean() with get,set
member val Production:Boolean = new Boolean() with get,set
[<Ignore>]
member val ManifestUrl:String = null with get,set
[<Ignore>]
member val Url:String = null with get,set
F# GetCurrentMicroAppRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /current/{Key}/{TenantKey} HTTP/1.1
Host: apps.harbourassist.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
key: String,
tenantKey: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { id: 0, name: String, key: String, version: 0, current: False, production: False, manifestUrl: String/manifest.json, url: String }