Skip to content

Instantly share code, notes, and snippets.

View chuck-wood's full-sized avatar

Charles Wood chuck-wood

View GitHub Profile
@chuck-wood
chuck-wood / gist:10672b364bb3b648768372d38924f9ab
Last active April 30, 2018 20:11
How to create a link to a Zendesk app settings page
client.metadata().then(function(metadata) {
client.get("currentAccount.subdomain").then(function(data) {
return "https://" + data["currentAccount.subdomain"] + ".zendesk.com/support/apps/manage#/installation/" + metadata.installationId + "/app_config";
});
});