lib/seam/clients/action_attempts.rb in seamapi-1.14.0 vs lib/seam/clients/action_attempts.rb in seamapi-1.15.0
- old
+ new
@@ -3,14 +3,14 @@
module Seam
module Clients
class ActionAttempts < BaseClient
def get(action_attempt_id)
request_seam_object(
- :get,
+ :post,
"/action_attempts/get",
Seam::ActionAttempt,
"action_attempt",
- params: {action_attempt_id: action_attempt_id}
+ body: {action_attempt_id: action_attempt_id}
)
end
end
end
end