careerbuilder / ruby-cb-api

Ruby wrapper around the CareerBuilder.com APIs
Apache License 2.0
14 stars 17 forks source link

New resume list API #235

Closed oochelz closed 8 years ago

oochelz commented 8 years ago

Adding in the new resume list API. This will live side-by-side with v3 for the time being.

opts = { oauth_token: token } # Requires an "authenticated code" token.

# Get all of the resumes for the user.
Cb.resumes.get(opts)

# Get all of the US host-site resumes for the user.
opts[:site] = 'US'
Cb.resumes.get(opts)