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(){}
}
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.
GET /subenefit HTTP/1.1 Host: portal-api.migrantleap.com Accept: text/csv
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"detail":{"title":"String","items":[{"name":"String","displayAs":"String","data":"String","images":["String"]}]},"responseCode":0,"responseMessage":"String"}