
Support
Depending on your contract formula, assistance may or may not be provided for your API implementation. Specific questions or changes within N8N are typically out of scope. Please feel free to contact your SPOC if you have any questions regarding this.
API Documentation
Consult https://apidocs.claritalk.com/ for a detailed description of the available calls. If something is missing for your project, you can reach us via support@claritalk.com
Capabilities
On the one hand, the result of a meeting can be obtained in N8N by having Claritalk call N8N's webhook. Please note: this function is intended for N8N to further process the organization's meetings. For privacy reasons, the appropriate legal/privacy framework must be in place.
Furthermore, new meetings can be created from N8N by calling the API to set up a meeting. Subsequently, a meeting can be started in the Claritalk UI by the user (who is ready) OR you can send a message to the Web service to initiate a meeting.
Additionally, you can manage meeting topics, questions, etc., via the API.
Steps in N2N for Authentication and Calls
- Create an OAuth2 credential
- Navigate to Settings → Credentials → New → OAuth2 API.
- Fill in:
- Authorization URL:
https://app.claritalk.com/oauth/authorize - Access Token URL:
https://app.claritalk.com/token - Grant Type: authorization_code
- Client ID: (from Claritalk)
- Client Secret: (from Claritalk)
- Scope: api.connect, offline_access
- Auth URI Query Parameters: leave empty
- Include Credentials in: Default/Automatic (leave as is).
- Authorization URL:
- Redirect URL: n8n will display this after you save.
- Copy this exact URL and provide it to Claritalk.
- Grant Access
- In the credential, click Connect / Connect OAuth2, complete the Claritalk login/consent process, and return to n8n.
- Ensure that Enable Refresh is active (n8n does this automatically if a
refresh_tokenis received).
- Use in an HTTP Request node
- Add an HTTP Request node.
- Authentication: select your newly created OAuth2 credential.
- Set up a test call, e.g.:
- Method: GET
- URL: (a Claritalk API endpoint from the docs, e.g.
https://api.claritalk.com/v1/...— customize as needed)
- Run the node. n8n automatically adds
Authorization: Bearer <access_token>and refreshes if necessary.