Class: Cb::Requests::User::CheckExisting

Inherits:
Base
  • Object
show all
Defined in:
lib/cb/requests/user/check_existing.rb

Instance Attribute Summary

Attributes inherited from Base

#args

Instance Method Summary collapse

Methods inherited from Base

#headers, #initialize, #query

Constructor Details

This class inherits a constructor from Cb::Requests::Base

Instance Method Details

#bodyObject



16
17
18
19
20
21
22
23
24
25
# File 'lib/cb/requests/user/check_existing.rb', line 16

def body
  <<-eos
    <Request>
      <DeveloperKey>#{Cb.configuration.dev_key}</DeveloperKey>
      <Email>#{args[:email]}</Email>
      <Password>#{args[:password]}</Password>
      <Test>#{test?}</Test>
    </Request>
  eos
end

#endpoint_uriObject



8
9
10
# File 'lib/cb/requests/user/check_existing.rb', line 8

def endpoint_uri
  Cb.configuration.uri_user_check_existing
end

#http_methodObject



12
13
14
# File 'lib/cb/requests/user/check_existing.rb', line 12

def http_method
  :post
end