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

Available Services for WS/Order:

DELETE
GET
POST
You can remove Orders from your network by issuing a DELETE request to http://api.resengo.com/WS/Order.
Note that any information on these Orders will be completely and unretrievably lost.
If you merely wish to cancel an Order, consider issuing a POST request to http://api.resengo.com/WS/Order with StatusID = 99 (canceled).

Parameters for WS/Order (DELETE):

Name C# DataType Description
OrderID List<int> (required) The OrderIDs of the Orders you wish to remove from your network.
Multiple values are possible using the notation &OrderID=123&OrderID=456&OrderID=...

Response of WS/Order (DELETE):

<?xml version="1.0" encoding="utf-8"?>
<Response>
  <Orders>
    <Order>(fields)</Order>
    <Order>(fields)</Order>
    ...
  </Orders>
</Response>
                    

Fields of <Order>:

FieldName C# DataType Description
OrderID int
Errors List<ValidationError>