FIBUdataServiceStack

<back to all web services

MandantDatenRequest

The following routes are available for this service:
GET, POST/auth/MandantDaten
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports FIBUdataServiceStack.ServiceModel.Messages

Namespace Global

    Namespace FIBUdataServiceStack.ServiceModel.Messages

        Public Partial Class MandantDatenRequest
            Public Overridable Property Token As String
            Public Overridable Property mitBanksalden As Boolean
        End Class

        Public Partial Class MandantDatenResponse
            Public Sub New()
                Apps_Rechte = New Dictionary(Of String, Boolean)
            End Sub

            Public Overridable Property MandTalksAnzahl As Integer
            Public Overridable Property OffeneRechnungenAnzahl As Integer
            Public Overridable Property isAdmin As Nullable(Of Integer)
            Public Overridable Property LieferantenSaldo As Nullable(Of Decimal)
            Public Overridable Property KundenSaldo As Nullable(Of Decimal)
            Public Overridable Property KasseBarSaldo As Nullable(Of Decimal)
            Public Overridable Property BankSaldo As Nullable(Of Decimal)
            Public Overridable Property Mandnr As Long
            Public Overridable Property nutzerid As Long
            Public Overridable Property nutzer_name As String
            Public Overridable Property Kurzbezeichnung As String
            Public Overridable Property Apps_Rechte As Dictionary(Of String, Boolean)
            Public Overridable Property AbwesenheitZahl As Long
            Public Overridable Property SteuerberaterAuftraegeAnzahl As Integer
            Public Overridable Property IsExternBerater As Nullable(Of Integer)
            Public Overridable Property BeraterNr As Nullable(Of Long)
        End Class
    End Namespace
End Namespace

VB.NET MandantDatenRequest 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 /auth/MandantDaten HTTP/1.1 
Host: ws4.fibudata.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Token: String,
	mitBanksalden: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	MandTalksAnzahl: 0,
	OffeneRechnungenAnzahl: 0,
	isAdmin: 0,
	LieferantenSaldo: 0,
	KundenSaldo: 0,
	KasseBarSaldo: 0,
	BankSaldo: 0,
	Mandnr: 0,
	nutzerid: 0,
	nutzer_name: String,
	Kurzbezeichnung: String,
	Apps_Rechte: 
	{
		String: False
	},
	AbwesenheitZahl: 0,
	SteuerberaterAuftraegeAnzahl: 0,
	IsExternBerater: 0,
	BeraterNr: 0
}