For Agents
Send multi-channel notifications (in-app, email, SMS, push, Slack), manage notification recipients, and read or update user notification preferences for product workflows.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Engagespot 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%2Fapi.engagespot.co%2Fengagespot" | 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%2Fapi.engagespot.co%2Fengagespot" | 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 Engagespot API.
Trigger a notification workflow that fans out to in-app, email, SMS, push, and Slack channels
Create or upsert a recipient user record with channel identifiers like email and phone
Cancel an in-flight workflow run before it dispatches to recipients
GET STARTED
Use for: Send a transactional notification to a specific user across email and in-app, I want to add a new user to Engagespot with their email and phone number, Cancel a scheduled workflow run before it goes out, Get the notification preferences for a recipient
Not supported: Does not handle email template authoring, raw SMTP delivery, or marketing campaign automation - use for transactional multi-channel notification dispatch and recipient preference management only.
Jentic publishes the only available OpenAPI specification for Engagespot API, keeping it validated and agent-ready. Engagespot is a multi-channel notification infrastructure that lets product teams send in-app, email, SMS, push, web push, and Slack notifications from a single API. Workflows handle channel routing, batching, digesting, and per-user preferences so engineers do not have to build delivery logic per channel. The 8-endpoint REST API covers triggering notifications, managing recipient users, reading and updating user preferences, and cancelling in-flight workflow runs.
Read a user's notification preferences across channels and categories
Bulk delete notifications from a user's inbox
Look up the delivery status and history of a sent notification
Patterns agents use Engagespot API for, with concrete tasks.
★ Multi-Channel Transactional Notifications
Trigger a single workflow that delivers the same event (password reset, order confirmation, payment receipt) across in-app inbox, email, SMS, push, and Slack without writing channel-specific delivery code. Engagespot routes per recipient based on channel availability and user preferences. Typical setup is under a day once a workflow template is defined in the Engagespot dashboard.
POST /notifications with workflow identifier 'order-shipped' and recipient userId 'cust_4821' to fan out a shipment notification across email and in-app channels
User Preference Management
Expose a notification preferences UI in your product where users opt in or out of categories per channel. The Engagespot API reads and updates these preferences so the workflow engine respects user choice automatically on every send. Reduces unsubscribe rates and meets compliance requirements for marketing communications.
GET /preferences for userId 'usr_9920' to fetch the user's category-by-channel preference matrix and present it for editing
User Lifecycle Sync
Keep Engagespot's recipient directory in sync with your application's user records. Create users on signup with their email, phone, and timezone, and delete them on account closure to honour data deletion requests. The /users endpoint supports both create and delete in the same workflow.
POST /users to register a new recipient with userId 'cust_4821', email and phone, then later DELETE /users when the customer closes their account
AI Agent Notification Dispatch via Jentic
An AI agent that monitors a process (build pipeline, fraud signal, support ticket SLA) can call the Engagespot API through Jentic to alert the right humans across the channels they prefer. Jentic resolves credentials and provides the workflow trigger schema so the agent only needs the workflow name and recipient ID.
Search Jentic for 'send a multi-channel notification', load the Engagespot workflow trigger schema, and POST /notifications with workflow 'incident-alert' and recipientId 'oncall-eng' when a monitored signal fires
8 endpoints — jentic publishes the only available openapi specification for engagespot api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/notifications
Trigger a workflow run for one or more recipients
/notifications
List notifications sent to a user
/notifications/delete-all
Bulk delete notifications from a user inbox
/users
Create or upsert a recipient user
/users
Delete a recipient user
/workflows/{workflowId}/cancel
Cancel an in-flight workflow run
/preferences
Read a user's notification preferences
/notifications
Trigger a workflow run for one or more recipients
/notifications
List notifications sent to a user
/notifications/delete-all
Bulk delete notifications from a user inbox
/users
Create or upsert a recipient user
/users
Delete a recipient user
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Engagespot by hand means sending both its X-ENGAGESPOT-API-KEY and X-ENGAGESPOT-API-SECRET headers and choosing between its US and EU hosts yourself. Through Jentic you install once, import the Engagespot API from the API Directory, store the credentials once, and your agent calls it.
Permission scoping
Engagespot puts the workflow id in the URL path (/workflows/{workflowId}/cancel), while notification and user targets travel in the request body, so limit the agent to the operations it needs, such as sending notifications and managing preferences, and leave user deletion out of the allowed set. Every operation you grant is your explicit choice.
Credential isolation
Your Engagespot key and secret are stored once, encrypted, 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 transactional notification' or 'read a recipient's preferences', and Jentic returns the matching Engagespot 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 Engagespot API through Jentic.
Why is there no official OpenAPI spec for Engagespot API?
Engagespot does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Engagespot API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the Engagespot API use?
Engagespot uses two API key headers, X-ENGAGESPOT-API-KEY and X-ENGAGESPOT-API-SECRET, sent on every request. When you call Engagespot through Jentic, both keys are stored in your Jentic One instance and injected at execution time so they never enter the agent's context.
Can I send a notification across multiple channels with one API call?
Yes. POST /notifications triggers a workflow you have defined in the Engagespot dashboard, and the workflow itself decides which channels (in-app, email, SMS, push, Slack) fire for each recipient based on their preferences. You only pass the workflow identifier and recipient details.
Can I cancel a notification after triggering it?
Yes, for workflow runs that are still in flight (for example digesting or scheduled). Call PATCH /workflows/{workflowId}/cancel with the workflowId returned from the trigger call. Notifications already dispatched to channels cannot be recalled.
How do I send a multi-channel notification through Jentic?
Run pip install jentic, then search for 'send a multi-channel notification', load the Engagespot POST /notifications operation schema, and execute with workflow identifier and recipient. Jentic returns the response without you handling the X-ENGAGESPOT-API-KEY headers directly.
What is the difference between users and preferences in this API?
Users are recipient records (id, email, phone, timezone) created via POST /users. Preferences are the per-user, per-channel, per-category opt-in matrix read via GET /preferences. You manage recipient identity in /users and recipient consent in /preferences.
Can I limit what my agent is allowed to do with the Engagespot API?
Yes. Because Jentic One is self-hosted, you decide which Engagespot operations your agent may call, so you can grant it the endpoints it needs, such as POST /notifications to trigger a workflow and GET /preferences to read recipient settings, while withholding others. If deleting recipients is not part of the agent's job, you simply leave DELETE /users out of the allowed set, and it cannot reach it. Your own rules also govern which stored credentials the agent may use, so every operation it can perform is your explicit choice.
/workflows/{workflowId}/cancel
Cancel an in-flight workflow run
/preferences
Read a user's notification preferences