Luis Gomez
04/05/2022, 1:32 PMOctavia Squidington III
04/05/2022, 3:21 PMSherif Nada
04/05/2022, 10:07 PMLuis Gomez
04/05/2022, 10:15 PMWorkflow Specialist
in the following picture. We ultimately want users to see the workflow specialist name rather than its ID. Workflow specialist is a custom field that belongs to the Account definition of that Salesforce instance. If we could include the field metadata in the records, we could generically determine what Salesforce Objects those ID reference.GET /Account/describe
endpoint of that salesforce instance, you’d see something like this:
{
"actionOverrides": [...],
"childRelationships": [...],
"fields": [
...,
{
"custom": true,
"label": "Workflow Specialist",
"name": "Workflow_Specialist__c",
"referenceTo": ["User"],
"type": "reference",
...
},
...
],
...
"label": "Account",
"labelPlural": "Accounts",
"name": "Account",
"recordTypeInfos": [...],
"supportedScopes": [...],
"urls": {...}
}
fields
property to the Salesforce record if a new param is provided in the Salesforce source config. It would not break backwards compatibility.