Description Usage Arguments Details Value Examples
View source: R/owners-deprecated.R
Retrieve raw and tidy results from the owners endpoint.
1 2 3 4 5 6 7 8 | hs_owners_raw(
token_path = hubspot_token_get(),
apikey = hubspot_key_get(),
include_inactive = TRUE,
email = NULL
)
hs_owners_tidy(owners = hs_owners_raw(), view = c("owners"))
|
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 |
email |
Search for owners matching the specified email address (exact match). |
owners |
Raw data from |
view |
A view (see Details) |
Inactive owners are defined as owners without any active remotes.
Required scope(s) of the OAuth token: contacts.
Different view
values and associated output.
"owners": A tibble with owners and related information.
List of owners (hs_owners_raw()
)
A tibble of owners (hs_owners_tidy()
)
1 2 3 4 5 6 | ## Not run:
owners <- hs_owners_raw()
active_owners <- hs_owners_raw(include_inactive = FALSE)
hs_owners_raw(email = "demo@hubspot.com")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.