Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Feedyou Bot Messaging API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fswaggerhub.feedyou%2Ffeedyou-bot-messaging-api" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fswaggerhub.feedyou%2Ffeedyou-bot-messaging-api" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Feedyou Bot Messaging API.
Send message from user to the bot's custom channel
Manage communications data programmatically
Integrate Feedyou Bot Messaging API into automated workflows
Query and filter Feedyou Bot Messaging API records by parameters
Monitor Feedyou Bot Messaging API operational status and events
GET STARTED
Patterns agents use Feedyou Bot Messaging API for, with concrete tasks.
★ Communications Operations
Use the Feedyou Bot Messaging API to perform communications operations programmatically. The API provides 2 endpoints covering core functionality including send message from user to the bot's custom channel, send message or event from the bot to user.
Call POST /custom to send message from user to the bot's custom channel
Data Retrieval and Monitoring
Query Feedyou Bot Messaging API resources on a schedule to track changes, generate alerts, or feed downstream dashboards. Agents poll relevant endpoints, compare against previous state, and trigger actions when thresholds are crossed.
Poll the primary Feedyou Bot Messaging API endpoint, compare response to last known state, and alert if changed
AI Agent Integration via Jentic
AI agents discover and call Feedyou Bot Messaging API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle none tokens manually.
Search Jentic for 'send message from user to the bot's custom channel', load the operation schema, and execute with Jentic-managed credentials
2 endpoints — this api allows to use feedyou bot with omnichannel solution which allows sending and receiving text messages to the user using various channeks.
METHOD
PATH
DESCRIPTION
/custom
Send message from user to the bot's custom channel
/
Send message or event from the bot to user
/custom
Send message from user to the bot's custom channel
/
Send message or event from the bot to user
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Feedyou Bot Messaging API by hand means resolving your per-bot Azure host, formatting the message payload, and posting to the default and custom channels yourself. Through Jentic you install once, import Feedyou Bot Messaging API from the API Directory, store the connection once, and your agent calls it.
Permission scoping
This API sends the channel and message in the request body, so scope the agent to the operations it needs, such as posting a message to the bot. You choose the operations it may call, so the custom channel post is not included unless you add it.
Credential isolation
This API declares no authentication, so there is no secret to hand around; any connection settings are held once by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'send a message to the bot' or 'post to the custom channel', and Jentic returns the matching Feedyou Bot Messaging API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Feedyou Bot Messaging API through Jentic.
What authentication does the Feedyou Bot Messaging API use?
The Feedyou Bot Messaging API uses no authentication. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I send message from user to the bot's custom channel with the Feedyou Bot Messaging API?
Yes. Use the POST /custom endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Feedyou Bot Messaging API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I send message from user to the bot's custom channel through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'send message from user to the bot's custom channel'. Jentic returns the matching Feedyou Bot Messaging API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Feedyou Bot Messaging API have?
The Feedyou Bot Messaging API exposes 2 endpoints covering custom operations.
Can I limit what my agent is allowed to do with the Feedyou Bot Messaging API?
Yes. Because Jentic One is self-hosted, your own rules decide which of the two operations your agent may call and which connection settings it may use. This API passes the channel and message in the request body, so you can allow the bot-to-user message post (POST /) while withholding the custom channel post (POST /custom), which is never included unless you add it. The agent can only run the operations you grant, so it cannot reach a channel you have not authorized.
Know of an official OpenAPI document? Contribute it →
For Agents
Programmatically send message from user to the bot's custom channel, send message or event from the bot to user. Covers 2 operations.
Use for: I need to send message from user to the bot's custom channel, I want to send message or event from the bot to user, Get the current status of Feedyou Bot Messaging API resources, List all records from Feedyou Bot Messaging API
Not supported: Does not handle payments, crm, or developer tools - use for communications only.
This API allows to use Feedyou bot with omnichannel solution which allows sending and receiving text messages to the user using various channeks. - When user starts conversation and routing rule tells that bot should handle this conversation, `beginIntroDialog` event is sent to the bot - Bot loads set of intro messages and sends them one by one to the endpoind specified by `serviceUrl` in incoming. The API exposes 2 endpoints.