Create contact
Metadata
- Name: Create contact
- Adaptor:
@openfn/language-salesforce - Adaptor Version:
latest - Created over 4 years ago
- Updated almost 2 years ago
- Score: 3 (an indicator of how useful this job may be)
Key Functions
create, dataValue
Expression
create('Contact', {
FirstName: dataValue("body.Patient_name"),
LastName: dataValue('body.Last_Name_of_Patient'),
Age__c: dataValue("body.Age"),
Sex__c: dataValue('body.Sex'),
Case_ID__c: dataValue("body.National_ID"),
Comments__c: dataValue("body.Comments")
});