π¦ ClawHub
Front
by @byungkyu
Front API integration with managed OAuth. Manage conversations, messages, contacts, tags, inboxes, teammates, and teams. Use this skill when users want to in...
π‘ Examples
# List inboxes
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/front/inboxes')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
π Tips & Best Practices
tea_ (teammate), tim_ (team), inb_ (inbox), cha_ (channel), cnv_ (conversation), msg_ (message), crd_ (contact), tag_ (tag), cmp_ (company)_links with related resource URLs_pagination for list endpointscompany.api.frontapp.com)curl -g when URLs contain brackets to disable glob parsingjq, environment variables may not expand correctly in some shellsTERMINAL
clawhub install front-api