| GET, POST | /fibuscan/Bankdaten/VonAuftraggeber |
|---|
import Foundation
import ServiceStack
public class BankdatenVonAuftraggeberRequest : Codable
{
public var auftraggeber:String
public var auftraggeberBLZ:String
public var auftraggeberKto:String
public var auftraggeberKtos:[String] = []
public var limit:Int
required public init(){}
}
public class BankdatenVonAuftraggeberResponse : Codable
{
public var liste:[BankdatenVonAuftraggeber] = []
required public init(){}
}
public class BankdatenVonAuftraggeber : Codable
{
public var pkontoID:Int?
public var auftraggeber:String
public var auftraggeberBLZ:String
public var auftraggeberKto:String
public var datenindex:Int?
public var bankindex:Int?
public var del:Int?
public var datum:Date?
required public init(){}
}
Swift BankdatenVonAuftraggeberRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /fibuscan/Bankdaten/VonAuftraggeber HTTP/1.1
Host: ws4.fibudata.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"Auftraggeber":"String","AuftraggeberBLZ":"String","AuftraggeberKto":"String","Limit":0}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"Liste":[{"PkontoID":0,"Auftraggeber":"String","AuftraggeberBLZ":"String","AuftraggeberKto":"String","Datenindex":0,"bankindex":0,"Del":0,"Datum":"\/Date(-62135596800000-0000)\/"}]}