Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pipedrive_api_rb

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pipedrive_api_rb

  • 1.0.5
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

Pipedrive Ruby API

Build Status

Pipedrive.com API wrapper

Installation

Add this line to your application's Gemfile:

gem 'pipedrive_api_rb'

And then execute:

$ bundle

Or install it yourself as:

$ gem install pipedrive_api_rb

Usage

Person

You need initialize Person client:

client = ::Pipedrive::Person.new('api_token')

You can get person's JSON data:

person = client.find_by_id(12345)
person.success? # check what request was successful
person.data # JSON data of person entity

You can update person:

res = client.update(12345, name: 'New Name', 'custom_field_key' => 'value')
res.success? # check what request was successful
res.data # updated JSON data of person

Or you can update person with only hash what include id:

res = client.update(id: 12345, name: 'New Name', 'custom_field_key' => 'value')

You can get the list of all persons:

all_persons = client.all # all persons - can be a time consume operation
all_persons = client.all(start: 200) # Skipping first 200 persons

Or you can get first page of persons:

first_page = client.chunk(start: 200, limit: 10) # get 10 records after skipping 200

Or you can iterate by all persons:

client.each(start: 200) do |json_item|
  # some logic
end

Or you can work with enumerate:

client.each(start: 100).select {|x| x['company_id'] == 12345}

Rails integration

If you need use only one pipedrive account for whole application, then you can create config/initializer/pipedrive.rb file with next content:

Pipedrive.setup do |pd|
  pd.api_token = ENV['PIPEDRIVE_API_TOKEN']
end

And you can skip providing api_token to the entities classes.

Contributing

  1. Fork it ( https://github.com/honzasterba/pipedrive_api_rb/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

FAQs

Package last updated on 31 Jan 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc