library(basecamper)

Retrieve all Projects

projects <- basecamper::basecamp_projects()

Inspecting Projects

Print

The print method for the projects object will return a character vector with the project name with the company associated with it as the element name.

projects

Summary

Summary method for a projects object will return a tibble with company name associated with the project, with the id and name of the project.

summary(projects)

Retrieve all Projects

Choose a project

(METRUM <- summary(projects)[[2,'id']])
project <- basecamper::basecamp_project('MYPROJECT')

Inspecting a Project