Skip to main content

Sample Python Project for creating a new Python Module

Project description

Description

This package contains a custom client for Salesforce API. This client allows developers to publish custom events to any SFDC instance.

Usage

  • First, initialize the SalesforceClient by calling SalesforceClient.initialize.
  • createSalesforceEvent will generate a new event.
  • updateSalesforceEvent will update an existing event or throw an error if the event does not exist.
  • upsertSalesforceEvent will update an event with the same subject, meeting date, owner, and attendee. If there are multiple events matching these criteria, override the event that is closest to the request time. If there is no event matching these criteria, create a new event.
    salesforceClient = SalesforceClient.intialize(
        salesforceDomain: 'https://cohesive2-dev-ed.develop.my.salesforce.com',
    );
    eventId = await salesforceClient.createSalesforceEvent(
        accessToken='YOUR_ACCESS_TOKEN',
        data={
            AccountId: 'YOUR_ACCOUNT_ID',
            MeetingName: 'Test Meeting',
            MeetingUrl: 'test.xyz',
            MeetingDate: new Date().toISOString(),
            MeetingSummary: 'Test Summary',
            MeetingAttendee: null,
            Sentiment: 'Positive',
            DurationInMinutes: 30,
        },
        mapping={
            AccountId: 'OwnerId',
            MeetingName: 'Subject',
            MeetingUrl: 'Description',
            MeetingDate: 'ActivityDateTime',
            MeetingSummary: 'Description',
            MeetingAttendee: 'WhoId',
            Sentiment: 'Description',
        },
    );

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

CohesiveSDK-0.0.1.tar.gz (9.3 kB view hashes)

Uploaded Source

Built Distribution

cohesivesdk-0.0.1-py3-none-any.whl (8.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page