My ServiceStack Backend

<back to all web services

SubenefitRequest

The following routes are available for this service:
GET/subenefit
import Foundation
import ServiceStack

public class SubenefitRequest : Codable
{
    public var subenefitId:Int
    public var lang:String

    required public init(){}
}

public class SubenefitResponse : Codable
{
    public var detail:Channel
    public var responseCode:Int
    public var responseMessage:String

    required public init(){}
}

public class Channel : Codable
{
    public var title:String
    public var items:[Item] = []

    required public init(){}
}

public class Item : Codable
{
    public var name:String
    public var displayAs:String
    public var data:String
    public var images:[String] = []

    required public init(){}
}


Swift SubenefitRequest DTOs

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

HTTP + JSV

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

GET /subenefit HTTP/1.1 
Host: portal-api.migrantleap.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	detail: 
	{
		title: String,
		items: 
		[
			{
				name: String,
				displayAs: String,
				data: String,
				images: 
				[
					String
				]
			}
		]
	},
	responseCode: 0,
	responseMessage: String
}