Module: Auth0::Api::V2::Jobs

Included in:
Auth0::Api::V2
Defined in:
lib/auth0/api/v2/jobs.rb

Overview

Instance Method Summary collapse

Instance Method Details

#create_job(users_file, connection_name) ⇒ Object

HTTParty doesn’t support multipart upload, will move this functionality to a separate PR auth0.com/docs/apiv2#!/jobs/post_users_imports

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/auth0/api/v2/jobs.rb', line 14

def create_job(users_file, connection_name)
  raise NotImplementedError
end

#get_job(job_id) ⇒ Object



7
8
9
10
# File 'lib/auth0/api/v2/jobs.rb', line 7

def get_job(job_id)
  path = "/api/v2/jobs/#{job_id}"
  get(path)
end