FIBUdataServiceStack

<back to all web services

SchnittstelleZugangsdatenUmtauschenRequest

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

public class SchnittstelleZugangsdatenUmtauschenRequest : Codable
{
    public var schnittstelle:Int
    public var bankID:Int?
    public var request_type:String
    public var auth_werte:[String:String] = [:]
    public var ausgangsrechnungKontonummer:String

    required public init(){}
}

public class SchnittstelleZugangsdatenUmtauschenResponse : Codable
{
    public var error:String
    public var result:Bool
    public var zugangsdatenGespeichert:Bool
    public var werte:[String:String] = [:]

    required public init(){}
}


Swift SchnittstelleZugangsdatenUmtauschenRequest DTOs

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

HTTP + OTHER

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

POST /fibuscan/Onlinehandel/SchnittstelleZugangsdatenUmtauschen HTTP/1.1 
Host: ws4.fibudata.net 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"Schnittstelle":0,"BankID":0,"request_type":"String","auth_werte":{"String":"String"},"AusgangsrechnungKontonummer":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"error":"String","result":false,"ZugangsdatenGespeichert":false,"werte":{"String":"String"}}