Resengo Web API ~ documentation

General Info:

Security
Xml or Json ?
C# example: a HTTP GET request
Validation Errors

Available Entities:

Module Entity
FI Transaction
PL Person
RES PartnerReservation
RES PartnerReservationContacts
RES PartnerReservations
SUB PersonSubscription
SUB Subscription
SUB SubscriptionTransaction
WS Order
WS OrderItem

Xml or Json ?

The Resengo Web API can receive requests and send responses in either xml or json.
Simply configure your http requests with the desired type:
Http HeaderValue
Content-typeapplication/xml
Acceptapplication/xml
or
Http HeaderValue
Content-typeapplication/json
Acceptapplication/json
For simplicity, all examples in this documentation are only in xml.
But every request and response are identical in json and the available fields are exactly the same.
See the C# Example for an implementation.