For fetching the Off_Market Listing what is the Parameter?
Right now we are fetching only sold and active properties using below parameter. For Active - "L_StatusCatID"= "1" For Sold - "L_StatusCatID"= "2" So please can you please let me know how can I fetch other status properties from Rets Connector Except Active and Sold.
Comments
Many times the RETS feed is configured to only allow certain status values based on the MLS.
You can find all of the various status values available for a MLS by looking at the RETS Metadata.
The feed may only allow a few, but you can put each one in a query to see if data is availble.
Or you can ask the MLS which ones your feed allows.
Without the login URL and account name I can't check to see.
We are using below Login URL and UserName "LoginUrl": "http://yuma-rets.paragonrels.com/rets/fnisrets.aspx/YUMA/login?rets-version=rets/1.7.2", "Username": "genreal",
You can use a query like this: ~(L_StatusCatID=|1,2) to exclude those status values.
Or you can query the L_Status field for finer status value filtering.
So for example you can use (L_Status=|1_3) to pull "Withdrawn/Off-Market" properties on Yuma.
we are able to fetch Sold, Active, CONTINGENCY, WITHDRAWN/OFF_MARKET, U/C - TAKE BACK UPS, Please let me know how can I fetch the Cancelled and Expired.
Expired: (L_Status=|4_0)
Cancelled: (L_Status=|5_1)
Were you able to get this working?
No We are not able could you help on that? what else we can do?
I'm not sure exactly what you are still wanting to do?
A Query like: (L_Status=|4_0,5_1) would return Cancelled and Expired using your account.
What exactly are you having trouble with?