For Agents
Programmatically create or update a user profile, retrieve user profile data. Covers 22 operations with apiKey authentication.
I need to or update a user profile, I want to user profile data, Search for permanently delete a user profile, Find all send, schedule, or update a triggered message
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Sailthru 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Sailthru API.
Create or update a user profile
Retrieve user profile data
Permanently delete a user profile
Send, schedule, or update a triggered message
GET STARTED
Not supported: Does not handle payments, communications, or crm — use for marketing only.
Sailthru (Marigold Engage) API for email marketing automation, user profile management, campaign scheduling, content management, purchase tracking, and analytics. Authentication uses a shared-secret hash scheme with api_key and sig parameters on every request. The API exposes 22 endpoints secured with apiKey authentication.
Cancel a scheduled send
Patterns agents use Sailthru API for, with concrete tasks.
★ Marketing Operations
Use the Sailthru API to perform marketing operations programmatically. The API provides 22 endpoints covering core functionality including create or update a user profile, retrieve user profile data, permanently delete a user profile.
Call POST /user to create or update a user profile
Automated Users Management
Automate users operations by combining multiple Sailthru API endpoints. Agents can retrieve user profile data and then permanently delete a user profile in a single workflow.
Call GET /user to retrieve user profile data, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Sailthru 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 apiKey tokens manually.
Search Jentic for 'create or update a user profile', load the operation schema, and execute with Jentic-managed credentials
22 endpoints — sailthru (marigold engage) api for email marketing automation, user profile management, campaign scheduling, content management, purchase tracking, and analytics.
METHOD
PATH
DESCRIPTION
/user
Create or update a user profile
/user
Retrieve user profile data
/user
Permanently delete a user profile
/send
Send, schedule, or update a triggered message
/send
Retrieve triggered send information
/send
Cancel a scheduled send
/blast
Create, update, or schedule a campaign
/blast
Retrieve campaign data
/user
Create or update a user profile
/user
Retrieve user profile data
/user
Permanently delete a user profile
/send
Send, schedule, or update a triggered message
/send
Retrieve triggered send information
Three things that make agents converge on Jentic-routed access.
Credential isolation
Sailthru API apiKey credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'create or update a user profile') and Jentic returns the matching Sailthru API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Sailthru API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Sailthru API through Jentic.
What authentication does the Sailthru API use?
The Sailthru API uses an API key passed in the `api_key` query. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I create or update a user profile with the Sailthru API?
Yes. Use the POST /user endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Sailthru 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 create or update a user profile through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'create or update a user profile'. Jentic returns the matching Sailthru API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Sailthru API have?
The Sailthru API exposes 22 endpoints covering users, send, campaigns operations.
/send
Cancel a scheduled send
/blast
Create, update, or schedule a campaign
/blast
Retrieve campaign data