Title: | Connect to the 'Less Annoying CRM' API |
---|---|
Description: | Connect to the 'Less Annoying CRM' API with ease to get your crm data in a clean and tidy format. 'Less Annoying CRM' is a simple CRM built for small businesses, more information is available on their website <https://www.lessannoyingcrm.com/>. |
Authors: | ixpantia, family = SRL [cph], Ronny Hernández Mora [aut] , Frans van Dunné [cre, aut] |
Maintainer: | Frans van Dunné <[email protected]> |
License: | GPL-3 |
Version: | 1.1.1 |
Built: | 2024-11-22 03:20:54 UTC |
Source: | https://github.com/ixpantia/lacrmr |
Return your user account information from Less annoying CRM
get_account_information(user_code, api_token)
get_account_information(user_code, api_token)
user_code |
The user code to identify your account |
api_token |
The api token to connect to your account |
For using this function you will need to get your credentials from your Less Annoying CRM. Make sure to have your user code and your api_token.
## Not run: get_account_information(user_code = "6A6E88", api_token = "FBHV7C") ## End(Not run)
## Not run: get_account_information(user_code = "6A6E88", api_token = "FBHV7C") ## End(Not run)
Return the contact information.
get_contact_information(user_code, api_token, contact_id = "")
get_contact_information(user_code, api_token, contact_id = "")
user_code |
The user code to identify your account |
api_token |
The api token to connect to your account |
contact_id |
The contact name or other term to make an specific call to the API. |
## Not run: get_contact_information(user_code = "6A6E88", api_token = "TQ9XM", contact_id = "Fulano") ## End(Not run)
## Not run: get_contact_information(user_code = "6A6E88", api_token = "TQ9XM", contact_id = "Fulano") ## End(Not run)
Return your pipeline report information from Less annoying CRM.
get_pipeline_report(user_code, api_token, pipelineid)
get_pipeline_report(user_code, api_token, pipelineid)
user_code |
The user code to identify your account |
api_token |
The api token to connect to your account |
pipelineid |
The id of the pipeline you want to get the report from |
For this you will need to know the pipelineId, StatusId, and CustomFieldId You can get this PipelineId's at https://www.lessannoyingcrm.com/app/Settings/Api'
## Not run: get_pipeline_report(user_code = "6A6E88", api_token = "96066", pipelineid = "57102821") ## End(Not run)
## Not run: get_pipeline_report(user_code = "6A6E88", api_token = "96066", pipelineid = "57102821") ## End(Not run)
Return the contacts information from Less annoying CRM.
search_contacts(user_code, api_token, search_term = "")
search_contacts(user_code, api_token, search_term = "")
user_code |
The user code to identify your account |
api_token |
The api token to connect to your account |
search_term |
The contact name or other term to make an specific call to the API. If you want to search for group enter "Group:GROUP_NAME" |
The function will return a data frame. The number of rows depends on the number of entries that a contact_id have in any of the following variables: phone, website, email, address. For example, there could be only 17 unique contact_id's, nonetheless, if one of those contact_id's have three emails, the final data frame will have 19 rows.
## Not run: search_contacts(user_code = "6A6E88", api_token = "TQ9XM", search_term = "brenesii") ## End(Not run)
## Not run: search_contacts(user_code = "6A6E88", api_token = "TQ9XM", search_term = "brenesii") ## End(Not run)