Table of Contents

Search

  1. Preface
  2. Introduction to Services Integration Framework
  3. Setting Up the SIF SDK
  4. Request and Response Objects
  5. Transactions and Exception Handling
  6. ORS-Specific SIF API
  7. Asynchronous SIF Requests
  8. ORS-Specific JMS Event Messages
  9. Using Security Access Manager
  10. Using Dynamic Data Masking
  11. SIF API Reference
  12. Troubleshooting
  13. Appendix A: Identifiers
  14. Appendix B: Frequently Asked Questions

Services Integration Framework Guide

Services Integration Framework Guide

GetTrustScore

GetTrustScore

GetTrustScore computes the trust score for a specified column, based on the specified trust override. The column must be trust-enabled in the Schema Manager of the Hub console. The trust score (type float) of the Admin system will be returned.
The request contains a column UID and a key identifying the base object record. The response contains the trust score.

Use Case

This is the common scenario for using the GetTrustScore request:
  • Compute the trust score for a column
    —If you are displaying a record, you can use GetTrustScore to display that information about a column.

Usage Example

The following example retrieves the trust score for column FIRST_NAME on base object C_CONTACT for the record with rowid = 3:
GetTrustScoreRequest request = new GetTrustScoreRequest(); request.setColumnUid("COLUMN.C_CONTACT|FIRST_NAME"); // Required request.setRecordKey(RecordKey.rowid("3")); // Required GetTrustScoreResponse response = (GetTrustScoreResponse) sipClient.process(request);

0 COMMENTS

We’d like to hear from you!