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)
Adding in the new resume list API. This will live side-by-side with v3 for the time being.