You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

drift-python

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drift-python

A Simple Drift API Wrapper.

1.1.3
pipPyPI
Maintainers
1

Open Source Love PyPI version

Drift Python

A Drift API wrapper written in Python.

Getting Started

To get started run pip install drift-python

from drift import Drift
drift = Drift("YOUR ACCESS TOKEN")

Contacts

Read the docs here: Contacts API.

Available Methods

  • drift.contacts.get()

    • contact_id (required)
    • email (optional)
    • limit (optional)
  • drift.contacts.create()

    • **attributes (required)

    Example: drift.contacts.create(email='johndoe@drift.com')

  • drift.contacts.update()

    • contact_id (required)
    • **attributes (required)
  • drift.contacts.delete()

    • contact_id (required)
  • drift.contacts.add_tags()

    • contact_id (required)
    • tags (required)

    Example:

    drift.contacts.add_tags(
      conversation_id=1, 
      tags=[{'name': 'My Tag'}]
    )
    
  • drift.contacts.remove_tag()

    • contact_id (required)
    • tag_name (required)
  • drift.contacts.remove_tags_bulk()

    • contact_id (required)

Conversations

Read the docs here Conversations API

Available Methods

  • drift.conversations.get()

    • conversation_id (required)
  • drift.conversations.list()

    • limit (optional) - defaults to 50
    • page_token (optional)
  • drift.conversations.create_message()

    • conversation_id (required)
    • org_id (required)
    • type (required)
    • body (optional)
    • buttons (optional)
    • edited_message_id (optional)
    • edit_type (optional)

    Example:

    drift.conversations.create_message(
        conversation_id=1,
        org_id=1,
        type='chat'
    )
    
  • drift.conversations.get_messages()

    • conversation_id (required)
    • next_ (optional)
  • drift.conversations.get_attachments()

    • doc_id (required)
  • drift.conversations.get_metrics()

    • query (required)

    Example:

    drift.conversations.get_metrics(
        {
          "metrics": [
            {
              "type": "AVG",
              "property": "numBotMessages"
            }
          ],
          "filters": [
            {
              "property": "createdAt",
              "operation": "BETWEEN",
              "values": ["2018-01-01", "2018-07-31"]
            }
          ]
        }
    )
    
    

Users

Read the docs here Users API

Available Methods

  • drift.users.get()

    • user_id (required)
  • drift.users.list()

  • drift.users.update()

    • user_id (required)
    • **attributes (required)

    Example: drift.users.update(243266, phone='555-555-5555')

Contributors

Support / Feedback / Bugs

For support and feedback, you can find us on Slack!

If you've found a bug, feel free to open up a PR with a fix or submit an issue. Let us know in the dev slack!

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts