FIBUdataServiceStack

<back to all web services

OnlinehandelTreffertypenRequest

The following routes are available for this service:
GET, POST/fibuscan/OnlinehandelTreffertypen
import Foundation
import ServiceStack

public class OnlinehandelTreffertypenRequest : Codable
{
    public var expression:String
    public var limit:Int

    required public init(){}
}

public class OnlinehandelTreffertypenResponse : Codable
{
    public var liste:[onlinehandel_treffertypen] = []

    required public init(){}
}

public class onlinehandel_treffertypen : IPrimaryKey, IMandnr, IDel, ITableBase, Codable
{
    public var id:Int?
    public var guid:String
    public var mandant:Int?
    public var del:Int?
    public var parent_id:Int?
    public var soll_parsen:Int?
    public var bezeichnung:String
    public var _erstellt:Date?
    public var _aenderung:Date?
    public var suchfeld1:Int?
    public var suchfeld1_text:String
    public var suchfeld2:Int?
    public var suchfeld2_text:String
    // @Ignore()
    public var primaryKey:Int?

    required public init(){}
}


Swift OnlinehandelTreffertypenRequest DTOs

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

HTTP + CSV

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

POST /fibuscan/OnlinehandelTreffertypen HTTP/1.1 
Host: ws4.fibudata.net 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"expression":"String","limit":0}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Liste":[{"id":0,"guid":"String","mandant":0,"del":0,"parent_id":0,"soll_parsen":0,"bezeichnung":"String","_erstellt":"\/Date(-62135596800000-0000)\/","_aenderung":"\/Date(-62135596800000-0000)\/","suchfeld1":0,"suchfeld1_text":"String","suchfeld2":0,"suchfeld2_text":"String","PrimaryKey":0}]}