The Fin Custom Helpdesk API allows you to integrate your custom helpdesk with Fin through a standardized set of API endpoints and webhooks.
Fin Custom Helpdesk API (0.0.1)
Overview
Languages
Servers
Your Custom Helpdesk API (replace with your actual domain)
https://helpdesk.example.com/api/fin/
- Your Custom Helpdesk API (replace with your actual domain)https://helpdesk.example.com/api/fin/agents
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X GET \
https://helpdesk.example.com/api/fin/agents \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
[ { "id": "agent_001", "user_type": "agent", "name": "Sarah Johnson", "email": "sarah.johnson@company.com", "alias": "Support Sarah", "photo_url": "https://example.com/avatars/sarah.jpg" }, { "id": "agent_fin", "user_type": "agent", "name": "Fin AI Assistant", "email": "fin@company.com", "alias": "Fin", "photo_url": "https://example.com/avatars/fin.png" } ]