Initial concepts
So, what we can do with the Platform?
How do I know if my company needs a chatbot?
Register and login
First Steps - Creating your project
Choose your plan
Profile
Permissions system
Project Dashboard
Platform's Glossary
2-Factor Authentication
Invalid authentication code
General settings
Artificial Intelligence
Weni Brain
Zero Shot Learning
WeniGPT
What is the Weni Platform's AI Module?
Overview
What is an Intelligence?
Intents and Entities
Hands-on
Creating an Intelligence
Training your Intelligence
Intelligence Force
Tests
Inbox
Translating your dataset
Share your AI with translators
Requesting authorization
Versions
Settings
Integration
Integrate an intelligence to your project in the Weni Platform
Introducing the Content Intelligence
Integrating a Content Intelligence
Updates
Glossary
Guidelines and Good practices
Flows
Expressions and Variables Introduction
Variables Glossary
Expressions Glossary
Flows Creation
Flows introduction
Flow editor and tools
Action cards
Decision cards
Adding Media to the message
Call Webhook: Making requests to external services
Split by Intent: Using Classifiers
Import and export flows
Using expressions to capture the user's location
Viewing reports on the platform
Route markers
Studio
Contacts and Messages
Groups
Messages
Triggers and Campaigns
Adding a trigger
Triggers Types
Tell a flow to ignore triggers and keywords
Campaign introduction
How to create a Campaign
Editing events
Creating contact from an external Webhook
Contact history
How to download, extract, transform and combine archived data from Weni Flows
Channels
Settings
Channels Introduction
Adding a Facebook Channel (RapidPro)
Adding a Viber channel
How a SMS Integration Works
General API concepts and Integrations
How to create a channel on twitter
How to create a channel on Instagram
Main steps to active Whatsapp for UNICEF
Adding Discord as a channel
Creating a Slack Channel
Adding a Viber channel (RapidPro)
Creating a Microsoft Teams channel
Weni Integrations
How to use the integrations module
Adding a Web channel
Adding a Telegram channel
How to create a channel with whatsApp demo
Whatsapp: Weni Express Integration
How to create template Messages: Whatsapp
Creating a Microsoft Teams Channel
Whatsapp Business API
Integrations
Human Attendance
Weni Chats: Introduction to the Chats module
Weni Chats: Setting Up Human Attendance
Weni Chats: Human Service Dashboard
Weni Chats: Human Service Management
Weni Chats: Attendance distribution rule
Weni Chats: Using active triggering of flows
Weni Chats: CoPilot
Ticketer: Ticketer on Rapid Pro
Ticketer: How to integrate Rocket.Chat as a ticket service on the Weni Plataform
How to send message templates through RocketChat
RocketChat call routing
RCAdmin API: Agent-Activity
U-Partners - Proper use of features
Using groups to organize human attendance
Data and BI
How to Install and Use the Weni Data Connector for Power BI
Incremental Update - Power BI
Explore Weni's Database Documentation
Tips for Data Modeling in Power BI
Filter using Contact Fields in Power BI
UX Writing
- All Categories
- Artificial Intelligence
- Integration
Integration
As a platform that allows the easy use of NLP in applications, Weni's integration process with external services is very simple!
In this article, you will learn how to Integrate with the prediction API to be able to access your intelligence from other platforms via HTTP requests.
Overview
Go to your intelligence and click on the Integration section
To make an HTTP request to the prediction API, you will need the following information:
- Protocol: the API uses the HTTP protocol.
- Base URL: the URL used for all the requests. The current base URL for the API is
https://nlp.bothub.it/v2/parse/
- Header: is the authorization token, used for integrate with a intelligence. Every intelligence has a unique token that needs to be passed on the header of the request.
- Request Body: the body needs to have the language and text for the intelligence to predict it.
- Response: is the JSON format of the response from BotHub, after a request is successfully made.
Code generator
The Code generator is a very useful tool, which allows the user to simulate a request in the syntax of technologies such as cURL, Python and Javascript. Select the prediction's language and text and an example of a request will appear.
After that, copy the example and start testing your intelligence through the API!