Member Endpoint

URL: https://www.realtracs.com/reso/Member

The Member endpoint provides information about members in Realtracs. Our Member resource is fully data dictionary compliant.

For a list of fields available, please reference our metadata.


Supported Queries

You can query the Member endpoint using the following fields:

  • ModificationTimestamp – Returns members updated since a specified date/time.
  • MemberKey – Returns a specific member by its unique key.

⚠️ By default, only Active members are returned. Inactive members must be explicitly requested using a filter.

Please refer to the billing documentation to understand how querying on different fields impacts your transaction cost.

Sorting

  • Records are sorted by ModificationTimestamp by default.
  • You may also sort by MemberKey

Filtering by Status

To include both Active and Inactive members, use the MemberStatus field in your $filter.

Example: Query Active and Inactive Members

GET https://www.realtracs.com/reso/Member?$filter=MemberStatus in ('Active','Inactive')
  • Returns members where the MemberStatus is either Active or Inactive.
  • You can combine this filter with $orderby, $top, or $count as needed.

Best Practices

  • We always update the ModificationTimestamp for a member when it changes. We never physically delete members (they only go inactive), so you should never need to redownload the entire resource. Use ModificationTimestamp to retrieve only recently updated members for efficiency.
  • When requesting inactive members, always include explicit filtering; otherwise, they will not appear in the results.
  • Do not attempt to use $top and $skip for pagination. Instead, follow the @odata.nextLink