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 .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.

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

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