Description Usage Arguments Details Value Examples
freshdesk_client
returns an object containing Freshdesk credentials.
1 2 | freshdesk_client(domain, api_key, password = "x", check_connection = FALSE,
check_api_path = "/api/v2/settings/helpdesk")
|
domain |
The Freshdesk domain, e.g. |
api_key |
Your Freshdesk api key. This can be found under Your API Key on your Freshdesk Profile Settings page. Otherwise set this to your user name to use basic authentication. |
password |
Your password. Only required if you are using basic authentication. |
check_connection |
If |
check_api_path |
The API path used to test the connection if |
This function takes data regarding a Freshdesk account and creates a list object continaing these credentials. This list contains data that will be used to authenticate on Freshdesk when using the Freshdesk API.
A list of your credentials. This list is required by the freshdesk_api
function to call methods through the API.
1 2 3 4 5 | ## Not run:
fc <- freshdesk_client("foo", "me@foo.com", "myPassword")
fc <- freshdesk_client("foo", "MyAPIKey")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.