Class: Seam::Clients::ActionAttempts

Inherits:
BaseClient show all
Defined in:
lib/seam/clients/action_attempts.rb

Instance Attribute Summary

Attributes inherited from BaseClient

#client

Instance Method Summary collapse

Methods inherited from BaseClient

#initialize, #request_seam, #request_seam_object

Constructor Details

This class inherits a constructor from Seam::Clients::BaseClient

Instance Method Details

#get(action_attempt_id) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/seam/clients/action_attempts.rb', line 6

def get(action_attempt_id)
  request_seam_object(
    :post,
    "/action_attempts/get",
    Seam::ActionAttempt,
    "action_attempt",
    body: {action_attempt_id: action_attempt_id}
  )
end