FIBUdataServiceStack

<back to all web services

WaehrungsListeRequest

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

Namespace Global

    Namespace FIBUdataServiceStack.ServiceModel.Messages

        Public Partial Class WaehrungsListeRequest
        End Class

        Public Partial Class WaehrungsListeResponse
            Public Sub New()
                Liste = New List(Of waehrung)
            End Sub

            Public Overridable Property Liste As List(Of waehrung)
        End Class
    End Namespace

    Namespace FIBUdataServiceStack.ServiceModel.Models

        Public Partial Class waehrung
            Implements IPrimaryKey
            Implements ITableBase
            Public Overridable Property id As Nullable(Of Long)
            Public Overridable Property iso4217 As String
            Public Overridable Property iso4217num As String
            Public Overridable Property bezeichnung As String
            Public Overridable Property _erstellt As Nullable(Of Date)
            Public Overridable Property _aenderung As Nullable(Of Date)
            Public Overridable Property symbol As String
            Public Overridable Property prio As Integer
            <Ignore>
            Public Overridable Property PrimaryKey As Nullable(Of Long)
        End Class
    End Namespace
End Namespace

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

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

{
	Liste: 
	[
		{
			id: 0,
			iso4217: String,
			iso4217num: String,
			bezeichnung: String,
			_erstellt: 0001-01-01,
			_aenderung: 0001-01-01,
			symbol: String,
			prio: 0,
			PrimaryKey: 0
		}
	]
}