You are here:
Create Contacts Invocable Action
Creates contact records for group census members.
This action is available in API version 59.0 and later.
Supported REST HTTP Methods
URI
/services/data/vXX.X/actions/standard/creaContactsFromGrpCensMembers
Formats
JSON
HTTP Methods
GET, POST
Authentication
Authorization: Bearer
token
Inputs
| Input | Details |
|---|---|
genderFieldName
|
Type Text Description The full name of the Gender field to use to create the contact records, including the namespace. For example, vlocity_ins__Gender__c. |
groupCensusMembers
|
Type Collection Description A collection of group census member records to create contacts for. |
matchingKeysList
|
Type Text Description A comma-delimited list of Contact object fields to use to detect duplicate account records. If an existing record has matching keys, the action skips the creation of a new record |
Outputs
| Output | Details |
|---|---|
contactIds
|
Description A collection of IDs of contact records created by the action. |
Usage
Sample Request
{
"groupCensusMembers": [
{"Id": "0r6xx00000003dpAAA"},
{"Id": "0r6xx00000003fRAAQ"}
],
"matchingKeysList": "FirstName,LastName,Email",
"genderFieldName": "vlocity_ins__Gender__c"
}

