Partners
Search and list partners for a given environment.
|
A string search on the partner name |
|
|
A string search on the partner description |
|
|
Returns only partners created after the given timestamp. |
|
|
Returns only partners created before the given timestamp. |
|
|
An integer to set the first result. By default, the value is at 0. The API returns 25 results per query. To get the 25 following ones, it should be 25, then 50, then 75, ... |
Examples
-
List all the partners of environment 26112 in XML format
https://www.babelway.net/SelfService3/rest/v2/hub-26112/partners.xml
<collection> <partner> <id>188586</id> <creationMoment>1700482591056</creationMoment> <lastUpdateMoment>1700482591056</lastUpdateMoment> <name>ABC</name> <description/> <me>false</me> <hub>26112</hub> <parent/> <userValues/> <partnerIdentifiers/> <contacts/> <emails/> <addressLine1/> <addressLine2/> <addressLine3/> <postalCode/> <city/> <province/> <country/> <connector/> <connectorElementId/> </partner> <partner> <id>1012</id> <creationMoment>1470130107454</creationMoment> <lastUpdateMoment>1470130107531</lastUpdateMoment> <name>sdf</name> <description/> <me>false</me> <hub>26112</hub> <parent/> <userValues/> <partnerIdentifiers/> <contacts/> <emails/> <addressLine1/> <addressLine2/> <addressLine3/> <postalCode/> <city/> <province/> <country/> <connector/> <connectorElementId/> </partner> </collection> -
List all the partners of environment 26112 in JSON format where name contain 'AB'
https://www.babelway.net/SelfService3/rest/v2/hub-26112/partners.json?name=AB
[ { "id": "188586", "creationMoment": "1700482591056", "lastUpdateMoment": "1700482591056", "name": "ABC", "description": "", "me": "false", "hub": "26112", "parent": "", "userValues": "", "partnerIdentifiers": "", "contacts": "", "emails": "", "addressLine1": "", "addressLine2": "", "addressLine3": "", "postalCode": "", "city": "", "province": "", "country": "", "connector": "", "connectorElementId": "" } ]