yaml
type: "io.kestra.plugin.ee.salesforce.create"
yaml
id: create
namespace: company.sales

tasks:
  - id: create_contacts
    type: io.kestra.plugin.ee.salesforce.Create
    connection:
      username: "{{ secret('SALESFORCE_USERNAME') }}"
      password: "{{ secret('SALESFORCE_PASSWORD') }}"
      authEndpoint: "{{ secret('SALESFORCE_AUTH_ENDPOINT') }}"
    objectName: "Contact"
    records:
      - FirstName: "John"
        LastName: "Doe"
        Email: "john.doe@example.com"
      - FirstName: "Jane"
        LastName: "Smith"
        Email: "jane.smith@example.com"
    skipDuplicate: true
Properties
SubType object
Default true
SubType string
Default https://login.salesforce.com/services/Soap/u/63.0/