module Auth0::Api::V2::Jobs

auth0.com/docs/apiv2#!/jobs

Public Instance Methods

create_job(users_file, connection_name) click to toggle source

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

# File lib/auth0/api/v2/jobs.rb, line 14
def create_job(users_file, connection_name)
  raise NotImplementedError
end
get_job(job_id) click to toggle source

auth0.com/docs/apiv2#!/jobs/get_jobs_by_job_id

# File lib/auth0/api/v2/jobs.rb, line 7
def get_job(job_id)
  path = "/api/v2/jobs/#{job_id}"
  get(path)
end