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

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

Instance Method Summary (collapse)

Instance Method Details

- (Object) create_job(users_file, connection_name)

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

Raises:

  • (NotImplementedError)


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

def create_job(users_file, connection_name)
  raise NotImplementedError
end

- (Object) get_job(job_id)



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

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