ChamberMaster or MemberZone API Documentation
Examples of Calls using Filters
Membership Status
http://secure2.chambermaster.com/api/associations({Customer_ID})/members/Status
{
"1": "Prospective",
"2": "Active",
"4": "Courtesy",
"8": "NonMember",
"16": "Inactive",
"32": "Deleted"
}
All Active Members
http://secure2.chambermaster.com/api/associations({Customer_ID})/members/?$filter=Status+eq+2
All Active and Courtesy Members
http://secure2.chambermaster.com/api/associations({Customer_ID})/members/?$filter=Status+eq+2+or+Status+eq+4
Event Details
http://api.micronetonline.com/v1/associations({Customer_ID})/events/details
Events Filtered by Active Events Between a Start and End Time/Date
GET http://api.micronetonline.com/V1/associations({Customer_ID})/events/details?$filter=Status+eq+2+and+EndTime+ge+DateTime%272017-11-01T00%3A00%3A00%27+and+StartTime+le+DateTime%272017-12-31T23%3A59%3A59%27