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

Description for FI/Transaction:

The Transaction entities are debts and payments.
When an order is created, a "debt" transaction is also made for the value of that order.
Payments done by or expected from the customer become "payment" transactions which can have a status of paid or unpaid.
An order is paid when the total value of all payment transactions equals the total value of all debt transactions for that order.
Do not confuse with SUB/SubscriptionTransaction, which are payments with credits.

Available Services for FI/Transaction:

DELETE
GET
POST
You can remove Transactions from your network by issuing a DELETE request to http://api.resengo.com/FI/Transaction.

Parameters for FI/Transaction (DELETE):

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

Response of FI/Transaction (DELETE):

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

Fields of <Transaction>:

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