Skip to main content

A simple python wrapper for the ProsperWorks API

Project description

Prosperworks Api

A python based api wrapper for Prosperworks. Build Status

Installation

From pip (recommended): pip install prosperworks

From source: pip install git+git://github.com:tizz98/prosperworks-api.git@master

Models

prosperworks.models.Company

Fields

  • id

  • name

  • address (prosperworks.models.Address)

  • assignee_id

  • contact_type_id

  • details

  • email_domain

  • phone_numbers (list of prosperworks.models.PhoneNumber)

  • socials (list of prosperworks.models.Social)

  • tags (list of strings)

  • websites (list of prosperworks.models.Website)

  • date_created

  • date_modified

  • custom_fields (list of prosperworks.models.CustomField)

Methods

  • search (search for companies), available kwargs are:

  • page_number

  • page_size

  • sort_by

  • sort_direction

  • tags

  • age

  • assignee_ids

  • city

  • state

  • postal_code

  • country

  • minimum_interaction_count

  • maximum_interaction_count

  • minimum_interaction_date

  • maximum_interaction_date

  • minimum_created_date

  • maximum_created_date

  • minimum_modified_date

  • maximum_modified_date

  • create (create new company), available kwargs are:

  • name

  • address

  • assignee_id

  • contact_type_id

  • details

  • email_domain

  • phone_numbers[]

  • socials[]

  • tags

  • websites[]

  • date_created

  • date_modified

  • custom_fields[]

  • update (update current company), will use currently set values to update

  • delete (delete current company)

Examples:

from prosperworks import api
from prosperworks.models import Company

api.configure('key', 'your.name@example.com')
for company in Company.search():
    print company.name

new_co = Company.create(name='New Co.')
print new_co.id

new_co.name = 'New Co. (updated)'
new_co.update()

new_co.delete()

prosperworks.models.Lead

Fields

  • id

  • name

  • address (prosperworks.models.Address)

  • assignee_id

  • company_name

  • customer_source_id

  • details

  • email

  • monetary_value

  • phone_numbers (list of prosperworks.models.PhoneNumber)

  • socials (list of prosperworks.models.Social)

  • status

  • tags (list of strings)

  • websites (list of prosperworks.models.Website)

  • date_created

  • date_modified

  • custom_fields (list of prosperworks.models.CustomField)

Methods

  • search (search for companies), available kwargs are:

  • page_number

  • page_size

  • sort_by

  • sort_direction

  • tags

  • age

  • assignee_ids

  • city

  • state

  • postal_code

  • country

  • minimum_interaction_count

  • maximum_interaction_count

  • minimum_interaction_date

  • maximum_interaction_date

  • minimum_created_date

  • maximum_created_date

  • minimum_modified_date

  • maximum_modified_date

  • create (create new company), available kwargs are:

  • name

  • address

  • assignee_id

  • company_name

  • customer_source_id

  • details

  • email

  • monetary_value

  • phone_numbers[]

  • socials[]

  • status

  • tags

  • title

  • websites[]

  • date_created

  • date_modified

  • custom_fields[]

  • update (update current company), will use currently set values to update

  • delete (delete current company)

  • convert (convert a lead), available kwargs are (all optional):

  • person

  • company (prosperworks.models.Company)

  • opportunity

Examples:

from prosperworks import api
from prosperworks.models import Company, Lead

api.configure('key', 'your.name@example.com')

new_co = Company.create(name='New Co.')
print new_co.id

lead = Lead.create(name='John Doe')
lead.name = 'Jane Doe'
lead.update()
print lead.id

lead.convert(company=new_co)

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

prosperworks-0.1.4.tar.gz (10.3 kB view details)

Uploaded Source

File details

Details for the file prosperworks-0.1.4.tar.gz.

File metadata

File hashes

Hashes for prosperworks-0.1.4.tar.gz
Algorithm Hash digest
SHA256 ac02a9a2609acc6075585d6ca3924de1ce435ae90b608c1a17d6eaa670b2e62d
MD5 0a7d2742508305ea65bfd8bc36b0305a
BLAKE2b-256 af6c61c5602256aeaeca247a8e2db98e1ff23af2d1c2c279e10d8e1483396d33

See more details on using hashes here.

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