Search Records returning different values than actually present

Search Records returning different values than actually present

Hey!

I have this following line in my deluge script:
accountSearch = zoho.crm.searchRecords("Accounts","(RS_Enroll_ID:equals:" + rsid + ")",1,200,{"cvid":864868001088693817});

info "Account search size: " + accountSearch.size();

listOfAccounts = zoho.crm.searchRecords("Accounts","(RS_Enroll_ID:equals:" + rsid + ")and(Account_Status:equals:Open)",1,200);

info "List of accounts size: " + listOfAccounts;

The first accountSearch returns 35 records while the second listOfAccounts returns 88. Interestingly, 88 is the correct number, but I'm very confused why my search using the custom view id isn't working as expected. When I'm within the custom view and filter records, I get the correct 88 number:


This RS ID number I have plugged into this filter is the RS ID that I'm using in my searchRecords. 

Anybody have anything similar happen to them? Any ideas on how to resolve?