Skip to main content

API wrapper for Act! CRM written in Python

Project description

actcrm-python

Act! CRM API wrapper written in python

Batchbook-python

Batchbook API wrapper written in python.

Installing

pip install actcrm-python

Usage

Simple access with API KEY

from actcrm.client import Client
client = Client('API_KEY', 'DEVELOPER_KEY')

Create a contact

client.create_contact()

Or you can specify what you want to send. Every field must be a string.

client.create_contact(firstName='Jhon', lastName='Snow', mobilePhone='0000000')

Get Contacts

client.get_contacts()

You can use OData query parameter to filter the contacts

client.get_contacts(top=1, order_by='created desc', filter='. . .')

Get an specific contact

client.get_contact(contact_id)

Delete an specific contact

client.delete_contact(contact_id)

You can do the same with opportunities

client.create_opportunity()

Get Metadata

client.get_metadata()

Requirements

-Requests
-Urllib

TODO

  • Calendar
  • Campaigns
  • ContactActivities
  • Emarketing
  • Groups Show/Hide List Operations Expand Operations
  • Interactions
  • Todos
  • UserInfos

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

actcrm_python-0.1.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

actcrm_python-0.1.1-py3-none-any.whl (4.2 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