Soapforce is a ruby gem for the Salesforce SOAP API. This gem was modeled after the restforce gem and depends on Savon 2.
Add this line to your application's Gemfile:
gem 'soapforce'
Or to get the latest changes from the source:
gem 'soapforce', :git => "git://github.com/TinderBox/soapforce.git"
And then execute:
$ bundle
Or install it yourself as:
$ gem install soapforce
For ISV Partners you can specify your client_id in a configuration block which will get included in the CallOptions header of every request.
# config/initializers/soapforce.rb
# This is your ISV Partner Client ID.
# It needs to be whitelisted to enable SOAP requests in Professional and Group Editions.
Soapforce.configure do |config|
config.client_id = "ParterName/SomeValue/"
end
If you prefer to use a username and password to authenticate:
client = Soapforce::Client.new
client.authenticate(:username => 'foo', :password => 'password_and_security_token')client = Soapforce::Client.new
client.authenticate(:session_id => 'session id', :server_url => 'server url')client.find('Account', '006A000000Lbiiz')
# => #<Soapforce::SObject Id="006A000000Lbiiz" Name="Test" LastModifiedBy="005G0000003f1ABPIN" ... >
client.find('Account', '1234', 'Some_External_Id_Field__c')
# => #<Soapforce::SObject Id="006A000000Lbiiz" Name="Test" LastModifiedBy="005G0000003f1ABPIN" ... >client.find_where('Account', Name: "Test")
# => [#<Soapforce::SObject Id="006A000000Lbiiz" Name="Test" LastModifiedBy="005G0000003f1ABPIN" ... >]
client.find_where('Account', Some_External_Id_Field__c: 1, ["Id", "Name, "CreatedBy"])
# => [#<Soapforce::SObject Id="006A000000Lbiiz" Name="Test" CreatedBy="005G0000003f1ABPIN" ... >]# Find all occurrences of 'bar'
client.search('FIND {bar}')
# => #[<Hash>]# Add a new account
client.create('Account', Name: 'Foobar Inc.')
# => {id: '006A000000Lbiiz', success: => true}# Update the Account with Id '006A000000Lbiiz'
client.update('Account', Id: '006A000000Lbiiz', Name: 'Whizbang Corp')
# => {id: '006A000000Lbiiz', success: => true}# Update the record with external ID of 12
client.upsert('Account', 'External__c', External__c: 12, Name: 'Foobar')
# => {id: '006A000000Lbiiz', success: => true, created: false}# Delete the Account with Id '006A000000Lbiiz'
client.destroy('Account', '006A000000Lbiiz')
# => {id: '0016000000MRatd', success: => true}# get the global describe for all sobjects
client.describe_global
# => { ... }
# get the describe for the Account object
client.describe('Account')
# => { ... }
# get the describe for Account and Opportunity object
client.describe(['Account', 'Opportunity'])
# => [{ ... },{ ... }]client.logout- Fork it
- 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 new Pull Request
