FIBUdataServiceStack

<back to all web services

BankRequest

The following routes are available for this service:
GET, POST/fibuscan/Bank

export class bank implements IPrimaryKey, IMandnr, IDel, ITableBaseErstelltAenderung, INutzerid
{
    public BankID?: number;
    public _erstellt?: string;
    public _aenderung?: string;
    public Anlagedatum?: string;
    public ktotyp?: number;
    public max_banktext?: number;
    public abruf?: number;
    public isRev?: number;
    public isSepa?: number;
    public buchungsdatum_isErfasst?: number;
    public del?: number;
    public id_lokal?: number;
    public mandant?: number;
    public Art?: number;
    public FibuKonto?: number;
    public Bezeichnung: string;
    public bic: string;
    public BLZ: string;
    public GUID: string;
    public iban: string;
    public Konto: string;
    public pw: string;
    public userBLZ: string;
    public userKto: string;
    public wkz: string;
    public universal: string;
    public nutzerid?: number;
    // @Ignore()
    public PrimaryKey?: number;

    public constructor(init?: Partial<bank>) { (Object as any).assign(this, init); }
}

export class BankResponse
{
    public Liste: bank[];

    public constructor(init?: Partial<BankResponse>) { (Object as any).assign(this, init); }
}

export class BankRequest
{
    public notCaching: boolean;

    public constructor(init?: Partial<BankRequest>) { (Object as any).assign(this, init); }
}

TypeScript BankRequest DTOs

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

HTTP + XML

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

POST /fibuscan/Bank HTTP/1.1 
Host: ws4.fibudata.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<BankRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
  <notCaching>false</notCaching>
</BankRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<BankResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
  <Liste xmlns:d2p1="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Models">
    <d2p1:bank>
      <d2p1:Anlagedatum>0001-01-01T00:00:00</d2p1:Anlagedatum>
      <d2p1:Art>0</d2p1:Art>
      <d2p1:BLZ>String</d2p1:BLZ>
      <d2p1:BankID>0</d2p1:BankID>
      <d2p1:Bezeichnung>String</d2p1:Bezeichnung>
      <d2p1:FibuKonto>0</d2p1:FibuKonto>
      <d2p1:GUID>String</d2p1:GUID>
      <d2p1:Konto>String</d2p1:Konto>
      <d2p1:PrimaryKey>0</d2p1:PrimaryKey>
      <d2p1:_aenderung>0001-01-01T00:00:00</d2p1:_aenderung>
      <d2p1:_erstellt>0001-01-01T00:00:00</d2p1:_erstellt>
      <d2p1:abruf>0</d2p1:abruf>
      <d2p1:bic>String</d2p1:bic>
      <d2p1:buchungsdatum_isErfasst>0</d2p1:buchungsdatum_isErfasst>
      <d2p1:del>0</d2p1:del>
      <d2p1:iban>String</d2p1:iban>
      <d2p1:id_lokal>0</d2p1:id_lokal>
      <d2p1:isRev>0</d2p1:isRev>
      <d2p1:isSepa>0</d2p1:isSepa>
      <d2p1:ktotyp>0</d2p1:ktotyp>
      <d2p1:mandant>0</d2p1:mandant>
      <d2p1:max_banktext>0</d2p1:max_banktext>
      <d2p1:nutzerid>0</d2p1:nutzerid>
      <d2p1:pw>String</d2p1:pw>
      <d2p1:universal>String</d2p1:universal>
      <d2p1:userBLZ>String</d2p1:userBLZ>
      <d2p1:userKto>String</d2p1:userKto>
      <d2p1:wkz>String</d2p1:wkz>
    </d2p1:bank>
  </Liste>
</BankResponse>