Description Usage Arguments Details Value Examples
Get raw and tidy results from the deal pipelines endpoint.
1 2 3 4 5 6 7 8 9 10 | hs_deal_pipelines_raw(
token_path = hubspot_token_get(),
apikey = hubspot_key_get(),
include_inactive = "EXCLUDE_DELETED"
)
hs_deal_pipelines_tidy(
deal_pipelines = hs_deal_pipelines_raw(),
view = c("properties", "stages")
)
|
token_path |
Path to OAuth 2.0 token.
See |
apikey |
API key to work with Hubspot (only used if |
include_inactive |
Should inactive entities be returned |
deal_pipelines |
A list of pipelines from |
view |
A view (see Details) |
Inactive pipelines are defined as deleted pipelines.
Different view
values and associated output.
"properties": tibble of pipeline IDs and property values
"stages": tibble of pipeline IDs and stages
List with deal pipeline data (hs_deal_pipelines_raw()
)
A tibble with associated entities (hs_deal_pipelines_tidy()
)
1 2 3 4 5 6 7 8 9 | deal_pipelines <- hs_deal_pipelines_raw()
properties <- hs_deal_pipelines_tidy(
deal_pipelines,
view = "properties"
)
stages <- hs_deal_pipelines_tidy(
deal_pipelines,
view = "stages"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.