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 SUB/PersonSubscription:

The PersonSubscription entity, as the name implies, is the combination of a Person and a Subscription.
This is what the end user usually simply refers to as a "Subscription" : Mr X. "has" a subscription.

Available Services for SUB/PersonSubscription:

DELETE
GET
POST
You can remove PersonSubscriptions from your network by issuing a DELETE request to http://api.resengo.com/SUB/PersonSubscription.

Parameters for SUB/PersonSubscription (DELETE):

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

Response of SUB/PersonSubscription (DELETE):

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

Fields of <PersonSubscription>:

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