
Support
Depending on your contract formula, assistance may or may not be provided on your API implementation. Specific questions or changes within N8N are usually out of scope. Feel free to contact your SPOC if you have questions about this.
API documentation
Please consult https://apidocs.claritalk.com/ for a detailed description of available calls. If you are missing something for your project, you can reach us at support@claritalk.com
Opportunities
On the one hand, one can get the result of a meeting in N8N by having the webhook of N8N called by Claritalk. Attention: this function serves to have the meetings of the organization further processed by N8N. For privacy reasons, the proper legal/privacy framework should be in place.
In addition, new meetings can be created from N8N by calling the API to set up a meeting. Then in the Claritalk UI a meeting can be started by the user (which is ready) OR you can send a message to the Web service to start a meeting.
In addition, you can manage meeting topics, questions, etc. via the API.
Steps in N2N for authentication and calls.
- Create an OAuth2 credential
- Go to Settings → Credentials → New → OAuth2 API.
- Enter:
- 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 blank
- Include Credentials in: Default/Automatic (leave as is).
- Authorization URL:
- Redirect URL: n8n shows you these after you save.
- Copy that exact URL and submit it to Claritalk
- Provide access
- In the credential, click Connect / OAuth2 connect, go through the Claritalk login/consent, and return to n8n.
- Make sure Enable Refresh is active (n8n does this automatically when a
refresh_token
enters).
- Use in an HTTP Request node
- Add an HTTP Request node.
- Authentication: choose your just created OAuth2 credential.
- Put a test call, e.g.:
- Method: GET
- URL: (A Claritalk API endpoint from the docs, e.g..
https://api.claritalk.com/v1/...
- adapt to what you need)
- Run the node. n8n automatically adds
Authorization: Bearer <access_token>
added and refreshed as needed.