The
Paperclip

AI、カスタマーサポート、セールスに関するあらゆる考察。
zendesk-trigger-add-follower-by-custom-field
json {"ticket": {"followers": [ {% assign emails = ticket.organization.custom fields.auto follow | split: ',' %} {% for email in emails %}{"user email": "{{ email | strip }}", "action": "put"}{% unless forloop.last %},{% endunless %}{% endfor %} ]}} ` このLiquidマークアップは、カスタムフィールドからカンマ区切りのメールを解析し、API用のJSONオブジェクトとしてフォーマットします。 
eesel Team
Editorzendesk-oauth-app-creation
https://{subdomain}.zendesk.com/oauth/authorizations/new https://yourcompany.zendesk.com/oauth/authorizations/new?response type=code&client id=your client id&redirect uri=https://yourapp.com/callback&scope=read%20write&state=abc123 python import requests response = requests.post( f'https://{subdomain}.zendesk.com/oauth/tokens', data={ 'grant type': 'authorization code', 'code': authorization code, 'client id': client id, 'client secret': client secret, 'redirect uri': redirect uri, 'scope': 'read', 'expires in': 172800, 2

eesel Team
Editor