- Notifications
You must be signed in to change notification settings - Fork54
amoniacou/pipedrive.rb
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Pipedrive.com API wrapper
Add this line to your application's Gemfile:
gem 'pipedrive.rb'And then execute:
$ bundleOr install it yourself as:
$ gem install pipedrive.rbYou 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}
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.
- Fork it (https://github.com/amoniacou/pipedrive/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
About
Pipedrive.com API Wrapper
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors7
Uh oh!
There was an error while loading.Please reload this page.
