Class: IcimsClient::IcimsClient

Inherits:
Object
  • Object
show all
Defined in:
lib/icims_client.rb

Overview

A client with methods for each service call. Contructor takes endpoint, username, password

Instance Method Summary collapse

Instance Method Details

#job_from_system_id(system_id) ⇒ Object

given a single system_id returns a single IcimsJob



28
29
30
31
# File 'lib/icims_client.rb', line 28

def job_from_system_id(system_id)
  response_body = job_response_body(job_request_body(system_id))
  return job_from_response_body(response_body)
end