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 PL/Person:

DELETE
GET
POST
You can remove persons from your network by issuing a DELETE request to http://api.resengo.com/PL/Person.
Note that any information on these persons will be completely and unretrievably lost.
If you merely wish to set a Person as "inactive", consider issuing a POST request to http://api.resengo.com/PL/Person with SubscriptionStatusID = 3 (blocked).

Parameters for PL/Person (DELETE):

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

Response of PL/Person (DELETE):

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

Fields of <Person>:

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