Create contact
Metadata
- Name: Create contact
- Adaptor:
@openfn/language-salesforce
- Adaptor Version:
latest
- Created almost 4 years ago
- Updated 11 months ago
- Score: 18 (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")
});