GithubHelp home page GithubHelp logo

isabella232 / tap-activecampaign Goto Github PK

View Code? Open in Web Editor NEW

This project forked from singer-io/tap-activecampaign

0.0 0.0 0.0 52 KB

License: GNU Affero General Public License v3.0

Makefile 0.76% Python 99.24%

tap-activecampaign's Introduction

tap-activecampaign

This is a Singer tap that produces JSON-formatted data following the Singer spec.

This tap:

Streams

[accounts](https: //developers.activecampaign.com/reference#list-all-accounts)

  • Endpoint: https://{subdomain}.api-us1.com/accounts
  • Data key: accounts
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

account_contacts

  • Endpoint: https://{subdomain}.api-us1.com/accountContacts
  • Data key: accountContacts
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

account_custom_fields

  • Endpoint: https://{subdomain}.api-us1.com/accountCustomFieldMeta
  • Data key: accountCustomFieldMeta
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

account_custom_field_values

  • Endpoint: https://{subdomain}.api-us1.com/accountCustomFieldData
  • Data key: accountCustomFieldData
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

addresses

  • Endpoint: https://{subdomain}.api-us1.com/addresses
  • Data key: addresses
  • Primary keys: id
  • Replication strategy: Full Table
  • Transformations: camelCase to snake_case, remove links node

automations

  • Endpoint: https://{subdomain}.api-us1.com/automations
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: mdate
  • Transformations: camelCase to snake_case, remove links node

brandings

  • Endpoint: https://{subdomain}.api-us1.com/brandings
  • Data key: brandings
  • Primary keys: id
  • Replication strategy: Full Table
  • Transformations: camelCase to snake_case, remove links node

calendars

  • Endpoint: https://{subdomain}.api-us1.com/calendars
  • Data key: calendars
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: mdate
  • Transformations: camelCase to snake_case, remove links node

campaigns

  • Endpoint: https://{subdomain}.api-us1.com/campaigns
  • Data key: campaigns
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

campaign_links

  • Endpoint: https://{subdomain}.api-us1.com/links
  • Data key: links
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

contacts

  • Endpoint: https://{subdomain}.api-us1.com/contacts
  • Data key: contacts
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
    • Bookmark query fields: updated_after
  • Transformations: camelCase to snake_case, remove links node

contact_automations

  • Endpoint: https://{subdomain}.api-us1.com/contactAutomations
  • Data key: contactAutomations
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: lastdate
  • Transformations: camelCase to snake_case, remove links node

contact_custom_fields

  • Endpoint: https://{subdomain}.api-us1.com/fields
  • Data key: fields
  • Primary keys: id
  • Replication strategy: Full Table
  • Transformations: camelCase to snake_case, remove links node

contact_custom_field_options

  • Endpoint: https://{subdomain}.api-us1.com/fields
  • Data key: fieldOptions
  • Primary keys: id
  • Replication strategy: Full Table
  • Transformations: camelCase to snake_case, remove links node

contact_custom_field_rels

  • Endpoint: https://{subdomain}.api-us1.com/fields
  • Data key: fieldRels
  • Primary keys: id
  • Replication strategy: Full Table
  • Transformations: camelCase to snake_case, remove links node

contact_custom_field_values

  • Endpoint: https://{subdomain}.api-us1.com/fieldValues
  • Data key: fieldValues
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: udate
  • Transformations: camelCase to snake_case, remove links node

contact_deals

  • Endpoint: https://{subdomain}.api-us1.com/contactDeals
  • Data key: contactDeals
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

deal_stages

  • Endpoint: https://{subdomain}.api-us1.com/dealStages
  • Data key: dealStages
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: udate
  • Transformations: camelCase to snake_case, remove links node

deal_groups

  • Endpoint: https://{subdomain}.api-us1.com/dealGroups
  • Data key: dealGroups
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: udate
  • Transformations: camelCase to snake_case, remove links node

deal_custom_fields

  • Endpoint: https://{subdomain}.api-us1.com/dealCustomFieldMeta
  • Data key: dealCustomFieldMeta
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

deal_custom_field_values

  • Endpoint: https://{subdomain}.api-us1.com/dealCustomFieldData
  • Data key: dealCustomFieldData
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: updated_timestamp
  • Transformations: camelCase to snake_case, remove links node

deals

  • Endpoint: https://{subdomain}.api-us1.com/deals
  • Data key: deals
  • Primary keys: id
  • Replication strategy: Incremental (query all, filter results)
    • Bookmark: mdate
  • Transformations: camelCase to snake_case, remove links node

Authentication

Quick Start

  1. Install

    Clone this repository, and then install using setup.py. We recommend using a virtualenv:

    > virtualenv -p python3 venv
    > source venv/bin/activate
    > python setup.py install
    OR
    > cd .../tap-activecampaign
    > pip install .
  2. Dependent libraries The following dependent libraries were installed.

    > pip install singer-python
    > pip install singer-tools
    > pip install target-stitch
    > pip install target-json
    
  3. Create your tap's config.json file which should look like the following:

      {
        "api_url": "YOUR_API_URL",
        "api_token": "YOUR_API_TOKEN",
        "start_date": "2019-01-01T00:00:00Z",
        "user_agent": "tap-activecampaign <api_user_email@your_company.com>"
      }

    Optionally, also create a state.json file. currently_syncing is an optional attribute used for identifying the last object to be synced in case the job is interrupted mid-stream. The next run would begin where the last job left off.

      {
        "currently_syncing": "tasks",
        "bookmarks": {
          "tasks": "2020-07-21T21:30:59.000000Z",
          "contact_conversions": "2020-07-22T19:49:14.000000Z",
          "deal_activities": "2020-07-22T19:49:22.000000Z",
          "contacts": "2020-07-22T17:22:04.000000Z",
          "contact_lists": "2020-07-21T16:30:50.000000Z",
          "deal_custom_field_values": "2020-06-09T00:57:32.000000Z",
          "templates": "2020-06-09T11:56:58.000000Z",
          "conversions": "2020-07-22T19:47:41.000000Z",
          "ecommerce_order_activities": "2019-01-01T00:00:00Z",
          "contact_data": "2020-07-22T19:49:11.000000Z",
          "contact_deals": "2020-07-21T15:13:46.000000Z",
          "calendars": "2020-06-08T17:30:48.000000Z",
          "forms": "2020-06-25T14:25:36.000000Z",
          "contact_automations": "2020-07-22T22:20:45.000000Z",
          "saved_responses": "2020-06-09T15:49:45.000000Z",
          "site_messages": "2020-07-22T19:49:11.000000Z",
          "ecommerce_orders": "2020-06-09T00:18:37.000000Z",
          "messages": "2020-07-22T19:12:02.000000Z",
          "contact_custom_field_values": "2020-06-08T18:42:51.000000Z",
          "account_contacts": "2020-07-22T19:16:06.000000Z",
          "email_activities": "2020-07-22T19:17:54.000000Z",
          "automations": "2020-07-22T19:17:23.000000Z",
          "campaign_links": "2020-07-22T14:12:24.000000Z",
          "automation_blocks": "2020-07-22T19:48:41.000000Z",
          "account_custom_fields": "2020-06-08T18:12:27.000000Z",
          "bounce_logs": "2020-07-22T17:22:05.000000Z",
          "account_custom_field_values": "2020-07-21T21:39:08.000000Z",
          "sms": "2020-07-22T19:39:46.000000Z",
          "activities": "2020-07-22T19:49:14.000000Z",
          "conversion_triggers": "2020-07-22T19:47:54.000000Z",
          "lists": "2020-06-09T10:58:19.000000Z",
          "scores": "2020-07-21T20:51:20.000000Z",
          "deal_custom_fields": "2020-06-09T01:01:52.000000Z",
          "ecommerce_connections": "2020-06-09T00:12:54.000000Z",
          "configs": "2020-07-21T16:36:36.000000Z",
          "contact_emails": "2020-07-21T21:31:10.000000Z",
          "ecommerce_customers": "2020-06-09T00:18:12.000000Z",
          "contact_tags": "2020-07-21T16:31:42.000000Z",
          "accounts": "2020-07-22T19:16:06.000000Z",
          "deals": "2020-07-22T19:49:22.000000Z",
          "deal_groups": "2020-06-09T00:52:40.000000Z",
          "deal_stages": "2020-06-08T22:53:48.000000Z",
          "campaigns": "2020-07-22T17:22:05.000000Z"
        }
      }  
  4. Run the Tap in Discovery Mode This creates a catalog.json for selecting objects/fields to integrate:

    tap-activecampaign --config config.json --discover > catalog.json

    See the Singer docs on discovery mode here.

  5. Run the Tap in Sync Mode (with catalog) and write out to state file

    For Sync mode:

    > tap-activecampaign --config tap_config.json --catalog catalog.json > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json

    To load to json files to verify outputs:

    > tap-activecampaign --config tap_config.json --catalog catalog.json | target-json > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json

    To pseudo-load to Stitch Import API with dry run:

    > tap-activecampaign --config tap_config.json --catalog catalog.json | target-stitch --config target_config.json --dry-run > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json
  6. Test the Tap

    While developing the activecampaign tap, the following utilities were run in accordance with Singer.io best practices: Pylint to improve code quality:

    > pylint tap_activecampaign -d missing-docstring -d logging-format-interpolation -d too-many-locals -d too-many-arguments

    Pylint test resulted in the following score:

    Your code has been rated at 9.78/10

    To check the tap and verify working:

    > tap-activecampaign --config tap_config.json --catalog catalog.json | singer-check-tap > state.json
    > tail -1 state.json > state.json.tmp && mv state.json.tmp state.json

    Check tap resulted in the following:

      The output is valid.
      It contained 720 messages for 59 streams.
    
          59 schema messages
          502 record messages
          159 state messages
    
      Details by stream:
      +------------------------------+---------+---------+
      | stream                       | records | schemas |
      +------------------------------+---------+---------+
      | ecommerce_order_activities   | 1       | 1       |
      | contact_emails               | 1       | 1       |
      | task_types                   | 6       | 1       |
      | email_activities             | 4       | 1       |
      | bounce_logs                  | 7       | 1       |
      | ecommerce_orders             | 1       | 1       |
      | contact_lists                | 9       | 1       |
      | contact_deals                | 2       | 1       |
      | ecommerce_customers          | 2       | 1       |
      | forms                        | 3       | 1       |
      | deal_custom_fields           | 5       | 1       |
      | deals                        | 16      | 1       |
      | contact_custom_field_options | 6       | 1       |
      | sms                          | 1       | 1       |
      | accounts                     | 9       | 1       |
      | contact_custom_field_rels    | 1       | 1       |
      | activities                   | 25      | 1       |
      | lists                        | 6       | 1       |
      | addresses                    | 3       | 1       |
      | saved_responses              | 3       | 1       |
      | messages                     | 26      | 1       |
      | conversions                  | 3       | 1       |
      | contact_data                 | 5       | 1       |
      | goals                        | 3       | 1       |
      | tags                         | 7       | 1       |
      | deal_activities              | 44      | 1       |
      | account_contacts             | 9       | 1       |
      | users                        | 2       | 1       |
      | segments                     | 16      | 1       |
      | contact_conversions          | 2       | 1       |
      | groups                       | 2       | 1       |
      | brandings                    | 1       | 1       |
      | ecommerce_order_products     | 2       | 1       |
      | calendars                    | 3       | 1       |
      | contact_custom_fields        | 2       | 1       |
      | automation_blocks            | 66      | 1       |
      | campaign_lists               | 18      | 1       |
      | scores                       | 2       | 1       |
      | deal_stages                  | 1       | 1       |
      | deal_group_users             | 1       | 1       |
      | webhooks                     | 2       | 1       |
      | campaign_links               | 21      | 1       |
      | contacts                     | 14      | 1       |
      | configs                      | 21      | 1       |
      | ecommerce_connections        | 2       | 1       |
      | conversion_triggers          | 7       | 1       |
      | campaigns                    | 12      | 1       |
      | account_custom_fields        | 13      | 1       |
      | deal_custom_field_values     | 9       | 1       |
      | tasks                        | 4       | 1       |
      | site_messages                | 2       | 1       |
      | campaign_messages            | 13      | 1       |
      | deal_groups                  | 3       | 1       |
      | templates                    | 1       | 1       |
      | contact_automations          | 19      | 1       |
      | contact_tags                 | 8       | 1       |
      | automations                  | 9       | 1       |
      | contact_custom_field_values  | 1       | 1       |
      | account_custom_field_values  | 15      | 1       |
      +------------------------------+---------+---------+
    

Copyright © 2020 Stitch

tap-activecampaign's People

Contributors

0xpetersatoshi avatar cosimon avatar jeffhuth-bytecode avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.