Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Pipedrive.com API Wrapper

License

NotificationsYou must be signed in to change notification settings

amoniacou/pipedrive.rb

Repository files navigation

Build StatusCode Climate

Pipedrive.com API wrapper

Installation

Add this line to your application's Gemfile:

gem 'pipedrive.rb'

And then execute:

$ bundle

Or install it yourself as:

$ gem install pipedrive.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 successfulperson.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 successfulres.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 operationall_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 logicend

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 createconfig/initializer/pipedrive.rb file with next content:

Pipedrive.setupdo |n|n.api_token=ENV['PIPEDRIVE_API_TOKEN']end

And you can skip providingapi_token to the entities classes.

Contributing

  1. Fork it (https://github.com/amoniacou/pipedrive/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

About

Pipedrive.com API Wrapper

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors7

Languages


[8]ページ先頭

©2009-2025 Movatter.jp