diff --git a/providers/zendesk/conf.json b/providers/zendesk/conf.json new file mode 100644 index 000000000..9973695d1 --- /dev/null +++ b/providers/zendesk/conf.json @@ -0,0 +1,37 @@ +{ + "name": "Zendesk", + "desc": "Zendesk is a beautiful, lightweight help desk solution. Use Zendesk's API to easily manage your users, enhance your support team's productivity and create seamless integrations.", + "url": "https://{subdomain}.zendesk.com/oauth", + "oauth2": { + "authorize": { + "url": "/authorizations/new", + "query": { + "client_id": "{client_id}", + "response_type": "code", + "redirect_uri": "{{callback}}", + "state": "{{state}}", + "scope": "{scope}" + } + }, + "access_token": { + "url": "/tokens", + "extra": ["scope"] + }, + "refresh": "/tokens", + "parameters": { + "subdomain": "string", + "client_secret": "string", + "client_id": "string", + "scope": { + "values": { + "read": "Read access on data.", + "write": "Write access on data." + } + } + } + }, + "href": { + "docs": "http://developer.zendesk.com", + "provider": "http://zendesk.com/" + } +} \ No newline at end of file diff --git a/providers/zendesk/config.png b/providers/zendesk/config.png new file mode 100644 index 000000000..1a69a4e95 Binary files /dev/null and b/providers/zendesk/config.png differ diff --git a/providers/zendesk/keys.png b/providers/zendesk/keys.png new file mode 100644 index 000000000..5c8f92b45 Binary files /dev/null and b/providers/zendesk/keys.png differ diff --git a/providers/zendesk/logo.png b/providers/zendesk/logo.png new file mode 100644 index 000000000..ee7c92859 Binary files /dev/null and b/providers/zendesk/logo.png differ diff --git a/providers/zendesk/settings.json b/providers/zendesk/settings.json new file mode 100644 index 000000000..9fb1d51cb --- /dev/null +++ b/providers/zendesk/settings.json @@ -0,0 +1,14 @@ +{ + "settings": { + "install": { + "href": { + "provider": "http://zendesk.com/", + "docs": "http://developer.zendesk.com" + } + }, + "sample": { + "method": "get", + "url": "/api/v2/users/me" + } + } +} \ No newline at end of file