Auction Class - quandis/qbo3-Documentation GitHub Wiki
The Mortgage module's Auction table is based on the MISMO data dictionary standard.
Column | Type | Required | Description |
---|---|---|---|
Active | string | ||
ActiveStatus | string | ||
ActiveWorkflow | string | ||
AssignedOrganizationID | integer | ||
AssignedPersonID | integer | ||
Auction | string | yes | Label for the table. |
AuctionID | integer | yes | Identity column and primary key for the table. |
Batch | integer | ||
CanDelete | string | ||
CanInsert | string | ||
CanUpdate | string | ||
ClientID | integer | ||
ClientPersonID | integer | ||
Closed | string | ||
ClosedReason | string | ||
CostLedgerID | integer | ||
CreatedDate | dateTime | ||
CreatedPersonID | integer | ||
CurrentDecisionID | integer | ||
DateClosed | dateTime | ||
DateDue | dateTime | ||
DateOpened | dateTime | ||
DecisionStep | string | ||
DefaultProcessID | integer | ||
Entity | string | ||
EntityParent | string | ||
Extranet | string | ||
FinalStatus | string | ||
Form | string | ||
InDecisionID | string | ||
InImportFileID | string | ||
LinkedFrom | string | ||
LinkedTo | string | ||
LoanID | integer | ||
MetaXml | string | Deprecated | |
NotLinkedFrom | string | ||
NotLinkedTo | string | ||
Object | string | ||
ObjectID | integer | ||
Open | string | ||
OpenAsOf | string | ||
OpenedReason | string | ||
Priority | integer | ||
Process | string | ||
ProcessID | integer | ||
ProcessTemplateID | integer | ||
ProcessType | string | ||
PropertyID | integer | ||
Sibling | string | ||
SiblingID | integer | ||
SourceXml | string | Deprecated | |
Status | string | ||
Tags | string | ||
UnreadNotifications | string | ||
UpdatedDate | dateTime | ||
UpdatedPersonID | integer | ||
VendorID | integer | ||
VendorPersonID | integer | ||
ViewAsRole | string | ||
Worklist | string |
Related Objects | Module | Relationship |
---|---|---|
Access | Child | |
AssignedOrganization | qbo.Contact.OrganizationObject | Foreign Key |
AssignedPerson | qbo.Security.PersonObject | Foreign Key |
Attachments | Attachment | Child |
Borrowers | Borrower | Child |
Client | qbo.Contact.OrganizationObject | Foreign Key |
ClientPerson | qbo.Security.PersonObject | Foreign Key |
Collections | CollectionMember | Child |
ConfigurationEntryCollection | ConfigurationEntry | Child |
Contacts | Contact | Child |
CostLedger | qbo.Accounting.LedgerObject | Foreign Key |
CurrentDecision | qbo.Decision.DecisionObject | Foreign Key |
Decisions | Decision | Child |
DefaultProcess | qbo.Process.ProcessObject | Foreign Key |
Delays | DecisionDelay | Child |
Forms | ImportForm | Child |
Labels | CollectionMember | Child |
Ledgers | Ledger | Child |
Loan | qbo.Mortgage.LoanObject | Foreign Key |
Messages | Message | Child |
ProcessTemplate | qbo.Process.ProcessTemplateObject | Foreign Key |
Property | qbo.Mortgage.PropertyObject | Foreign Key |
Regions | Geography | Child |
Scores | Score | Child |
SearchIndexes | SearchIndex | Child |
Tasks | ImportForm | Child |
Vendor | qbo.Contact.OrganizationObject | Foreign Key |
VendorPerson | qbo.Security.PersonObject | Foreign Key |
Worklists | SmartWorklistMember | Child |
The search method will return all records matching the {Parameters}
criteria. For searches, {Parameters}
may include any property listed in the table above. The following standard optional parameters also apply:
- Output: determines the formatting of the returned data. Valid values are
Xml
,Json
,JsonP
. If omitted, XHTML is returns based on theAuction.Search.xslt
template. - DisplaySize: determines the maximum number of rows returned. Default is 25.
DisplaySize=0
will return all matching rows. - RecordStart: the starting record to return; defaults to 0. Used for pagination.
- OrderBy: a series of properties to order by.
- Request:
Auction.ashx/Search?Auction=ABC123
- Response:
<AuctionCollection>
<AuctionItem>
<AuctionID>449102</AuctionID>
<Auction>1002531374</Auction>
<LoanID>114490</LoanID>
<PropertyID>82310</PropertyID>
<ProcessID>971557</ProcessID>
<DefaultProcessID>920366</DefaultProcessID>
<Process>1002531374</Process>
<ProcessTemplateID>30</ProcessTemplateID>
<Sibling>Auction</Sibling>
<SiblingID>449102</SiblingID>
<ProcessType>TPS</ProcessType>
<Priority>
</Priority>
<AssignedOrganizationID>423</AssignedOrganizationID>
<AssignedPersonID>
</AssignedPersonID>
<VendorID>
</VendorID>
<VendorPersonID>
</VendorPersonID>
<DateOpened>2018-05-07T09:55:08.853-07:00</DateOpened>
<OpenedReason>
</OpenedReason>
<DateClosed>
</DateClosed>
<ClosedReason>
</ClosedReason>
<DateDue>
</DateDue>
<CostLedgerID>
</CostLedgerID>
<CurrentDecisionID>286977</CurrentDecisionID>
<SourceXml>
</SourceXml>
<MetaXml>
</MetaXml>
<ClientID>1605</ClientID>
<ClientPersonID>
</ClientPersonID>
<Object>Loan</Object>
<ObjectID>114490</ObjectID>
<Status>Active</Status>
<CreatedPersonID>1</CreatedPersonID>
<CreatedDate>2018-05-07T09:55:08.853-07:00</CreatedDate>
<UpdatedPersonID>1</UpdatedPersonID>
<UpdatedDate>2018-05-07T10:49:49.807-07:00</UpdatedDate>
<ServicerID>1605</ServicerID>
<Servicer>Specialized Loan Servicing</Servicer>
<ServicerLoanID>
</ServicerLoanID>
<AgencyID>
</AgencyID>
<Agency>
</Agency>
<AgencyLoanID>
</AgencyLoanID>
<ContextIdentifierLoanID>
</ContextIdentifierLoanID>
<InvestorID>
</InvestorID>
<Investor>
</Investor>
<InvestorLoanID>303356870</InvestorLoanID>
<Address>2301 Pomelo Place Northwest</Address>
<City>Albuquerque</City>
<State>NM</State>
<PostalCode>87120</PostalCode>
<Loan>1002531374</Loan>
<Property>2301 Pomelo Place Northwest</Property>
<DefaultProcess>1002531374</DefaultProcess>
<ProcessTemplate>TPS Auction</ProcessTemplate>
<AssignedOrganization>Auction.com</AssignedOrganization>
<AssignedPerson>
</AssignedPerson>
<Vendor>
</Vendor>
<VendorPerson>
</VendorPerson>
<CostLedger>
</CostLedger>
<CurrentDecision>Concierge</CurrentDecision>
<Client>Specialized Loan Servicing</Client>
<ClientPerson>
</ClientPerson>
<CreatedPerson>[email protected]</CreatedPerson>
<UpdatedPerson>[email protected]</UpdatedPerson>
<ParentLabel>1002531374</ParentLabel>
<Grandparent>Property</Grandparent>
<GrandparentID>82310</GrandparentID>
<RecordCount>500</RecordCount>
<AssignedOrganizationAddress>One Mauchly</AssignedOrganizationAddress>
<AssignedOrganizationCity>Irvine</AssignedOrganizationCity>
<AssignedOrganizationState>CA</AssignedOrganizationState>
<AssignedOrganizationPostalCode>92618</AssignedOrganizationPostalCode>
<AssignedOrganizationPhone>
</AssignedOrganizationPhone>
<AssignedOrganizationEmail>
</AssignedOrganizationEmail>
<ScheduledSaleDate>
</ScheduledSaleDate>
<DefaultProcessAssignedOrganizationID>984</DefaultProcessAssignedOrganizationID>
<DefaultProcessAssignedOrganization>Mona2</DefaultProcessAssignedOrganization>
<LoanType>CONV</LoanType>
<LoanStatus>
</LoanStatus>
</AuctionItem>
<AuctionItem>
<AuctionID>449103</AuctionID>
<Auction>1002830952</Auction>
<LoanID>114491</LoanID>
<PropertyID>129912</PropertyID>
<ProcessID>971558</ProcessID>
<DefaultProcessID>954913</DefaultProcessID>
<Process>1002830952</Process>
<ProcessTemplateID>30</ProcessTemplateID>
<Sibling>Auction</Sibling>
<SiblingID>449103</SiblingID>
<ProcessType>TPS</ProcessType>
<Priority>
</Priority>
<AssignedOrganizationID>423</AssignedOrganizationID>
<AssignedPersonID>
</AssignedPersonID>
<VendorID>
</VendorID>
<VendorPersonID>
</VendorPersonID>
<DateOpened>2018-05-07T09:55:08.853-07:00</DateOpened>
<OpenedReason>
</OpenedReason>
<DateClosed>
</DateClosed>
<ClosedReason>
</ClosedReason>
<DateDue>
</DateDue>
<CostLedgerID>
</CostLedgerID>
<CurrentDecisionID>286979</CurrentDecisionID>
<SourceXml>
</SourceXml>
<MetaXml>
</MetaXml>
<ClientID>1605</ClientID>
<ClientPersonID>
</ClientPersonID>
<Object>Loan</Object>
<ObjectID>114491</ObjectID>
<Status>Active</Status>
<CreatedPersonID>1</CreatedPersonID>
<CreatedDate>2018-05-07T09:55:08.853-07:00</CreatedDate>
<UpdatedPersonID>1</UpdatedPersonID>
<UpdatedDate>2018-05-07T10:49:50.29-07:00</UpdatedDate>
<ServicerID>1605</ServicerID>
<Servicer>Specialized Loan Servicing</Servicer>
<ServicerLoanID>
</ServicerLoanID>
<AgencyID>
</AgencyID>
<Agency>
</Agency>
<AgencyLoanID>
</AgencyLoanID>
<ContextIdentifierLoanID>
</ContextIdentifierLoanID>
<InvestorID>
</InvestorID>
<Investor>
</Investor>
<InvestorLoanID>304005113</InvestorLoanID>
<Address>505 Northwest 118th Street</Address>
<City>Miami</City>
<State>FL</State>
<PostalCode>33168</PostalCode>
<Loan>1002830952</Loan>
<Property>505 Northwest 118th Street, Miami, FL 33168</Property>
<DefaultProcess>1002830952</DefaultProcess>
<ProcessTemplate>TPS Auction</ProcessTemplate>
<AssignedOrganization>Auction.com</AssignedOrganization>
<AssignedPerson>
</AssignedPerson>
<Vendor>
</Vendor>
<VendorPerson>
</VendorPerson>
<CostLedger>
</CostLedger>
<CurrentDecision>Auctioneering</CurrentDecision>
<Client>Specialized Loan Servicing</Client>
<ClientPerson>
</ClientPerson>
<CreatedPerson>[email protected]</CreatedPerson>
<UpdatedPerson>[email protected]</UpdatedPerson>
<ParentLabel>1002830952</ParentLabel>
<Grandparent>Property</Grandparent>
<GrandparentID>129912</GrandparentID>
<RecordCount>500</RecordCount>
<AssignedOrganizationAddress>One Mauchly</AssignedOrganizationAddress>
<AssignedOrganizationCity>Irvine</AssignedOrganizationCity>
<AssignedOrganizationState>CA</AssignedOrganizationState>
<AssignedOrganizationPostalCode>92618</AssignedOrganizationPostalCode>
<AssignedOrganizationPhone>
</AssignedOrganizationPhone>
<AssignedOrganizationEmail>
</AssignedOrganizationEmail>
<ScheduledSaleDate>
</ScheduledSaleDate>
<DefaultProcessAssignedOrganizationID>1814</DefaultProcessAssignedOrganizationID>
<DefaultProcessAssignedOrganization>Atty Mona</DefaultProcessAssignedOrganization>
<LoanType>CONV</LoanType>
<LoanStatus>
</LoanStatus>
</AuctionItem>
</AuctionCollection>
The save method will return all records matching the {Parameters}
criteria. {Parameters}
may include any property listed in the table above along with child classes.
- Output: determines the formatting of the returned data. Valid values are
Xml
,Json
,JsonP
. - Response: included in the response is
{Table}
ID; this is the primary key of the{Table}
row created - With the same Save method, you can also save data to related tables. By using a
{Parent}_{Column}
pattern, you can update the parent table's data in the same call. - Child records may also be updated using a
{Child}_{Index}_{Column}
pattern. - For child records that are templated, you may use the template name in lieu of an index.
The delete method will delete all records where ID={comma-delimited list of identifiers}
criteria.
The ListWhere method will return all records matching the {Parameters}
criteria. {Parameters}
may include any property listed in the table.
- Output: determines the formatting of the returned data. Valid values are
Xml
,Json
,JsonP
. - Response: 2 columns are returned -
{Table}
ID and{Table}
columns. - Request:
Auction.ashx/ListWhere?AuctionID=1,2,3
- Response:
<AuctionCollection>
<AuctionItem>
<AuctionID>28</AuctionID>
<Auction>225680</Auction>
</AuctionItem>
<AuctionItem>
<AuctionID>29</AuctionID>
<Auction>229618</Auction>
</AuctionItem>
</AuctionCollection>