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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	notCaching: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Liste: 
	[
		{
			BankID: 0,
			_erstellt: 0001-01-01,
			_aenderung: 0001-01-01,
			Anlagedatum: 0001-01-01,
			ktotyp: 0,
			max_banktext: 0,
			abruf: 0,
			isRev: 0,
			isSepa: 0,
			buchungsdatum_isErfasst: 0,
			del: 0,
			id_lokal: 0,
			mandant: 0,
			Art: 0,
			FibuKonto: 0,
			Bezeichnung: String,
			bic: String,
			BLZ: String,
			GUID: String,
			iban: String,
			Konto: String,
			pw: String,
			userBLZ: String,
			userKto: String,
			wkz: String,
			universal: String,
			nutzerid: 0,
			PrimaryKey: 0
		}
	]
}