Unify and manage your data

Get Input Mapping

This API allows the managed package to build UI and construct search queries.

The input mappings allow the managed package to build UI and construct search queries. The response of this API contains the Salesforce fields of the main objects and the fields of the related object with relationship, type, and RecordTypeId.

Request

GET {SbcApiUrl}/{tenant}/{profile}/inputMappings
Table 1. Parameters
TypeNameRequiredDescription
HeadersAuthorizationYes
PathSbcApiUrlYesSBC service URL
tenantYesTenant ID
profileYesProfile name
QuerysObjectYessObject type
recordTypeIdno

Request Example

https://{environment}.reltio.com/account360/profileName/inputMappings?sObject=Account&recordTypeId=123600000CiouYYu

Response Example

{
  "sfdcObject": {
    "name": "Account",
    "recordType": {
      "id": "0122p000000ByMJKS"
    },
    "fields": [
      "Name",
      "Website",
      "Phone",
      "Fax"
    ],
    "relatedObjects": [
      {
        "sfdcObject": {
          "name": "vv_adr__Address_vod__c",
          "recordType": {
            "id": "0122p000000ByMEAA0"
          },
          "relationshipName": "vv_adr__Address_vod__r",
          "fields": [
            "Name",
            "vv_adr__City_vod__c",
            "vv_adr__Country_vod__c",
            "vv_adr__State_vod__c",
            "vv_adr__Zip_vod__c"
          ]
        }
      }
    ]
  }
}