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
Release history Release notifications | RSS feed
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 details)
Built Distribution
File details
Details for the file actcrm_python-0.1.1.tar.gz
.
File metadata
- Download URL: actcrm_python-0.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbda2da38c83a91405a9ae0e272c4d4b2503b922b266eaa50fbcf37e241e5fef |
|
MD5 | 10083c90b87177201893100016616e11 |
|
BLAKE2b-256 | 50596d93a57204094ebed9877428b66833e2476a5c118d5741d9e128eea7de0f |
File details
Details for the file actcrm_python-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: actcrm_python-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b944d9824077fc410977b8e7e337ab463db3106275304535448ea76b0d19ea63 |
|
MD5 | fc2ab3c02e8a54002af2402b655745ce |
|
BLAKE2b-256 | 49c7e4b967c1ca44042393524f1a91d94b3d17541c6a02c45ac1b0784e65464e |