Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add update_customer method #6

Merged
merged 1 commit into from
Aug 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion lib/help_scout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def reports_user_ratings(user_id, rating, start_date, end_date, options)
get("reports/user/ratings", options)
end


# Public: Creates conversation thread
#
# conversion_id - conversation id
Expand All @@ -138,6 +137,16 @@ def create_thread(conversation_id:, thread:, imported: nil, reload: nil)
last_response.code == HTTP_CREATED
end

# Public: Update Customer
#
# id - customer id
# data - hash with data
#
# More info: http://developer.helpscout.net/help-desk-api/customers/update/
def update_customer(id, data)
put("customers/#{id}", { body: data })
end

protected

def post(path, options = {})
Expand Down
14 changes: 14 additions & 0 deletions spec/helpscout_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,18 @@
expect(req).to have_been_requested
end
end

describe '#update_customer' do
let(:data) { { "firstName" => "Bob" } }

it 'does the correct query' do
url = 'https://api.helpscout.net/v1/customers/1337.json'
req = stub_request(:put, url).
with(body: data.to_json).
to_return(status: 201)

client.update_customer(1337, data)
expect(req).to have_been_requested
end
end
end