class Restforce::Client

def create(sobject, attrs)

something bad happens
Returns the String Id of the newly created sobject. Returns false if

# => '0016000000MRatd'
client.create('Account', Name: 'Foobar Inc.')
# Add a new account

Examples

Public: Insert a new record.
def create(sobject, attrs)
  create!(sobject, attrs)
rescue *exceptions
  false
end