For Agents
Programmatically soap endpoint, get wsdl service description. Covers 13 operations with apiKey authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Sympa 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%2Fsympa.community%2Fsympa-community" | 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%2Fsympa.community%2Fsympa-community" | 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 Sympa API.
SOAP endpoint
Get WSDL service description
Authenticate user (SOAP)
List available mailing lists (SOAP)
GET STARTED
Use for: I need to soap endpoint, I want to wsdl service description, Search for authenticate user (soap), Find all available mailing lists (soap)
Not supported: Does not handle payments, crm, or developer tools - use for communications only.
Sympa is an open-source mailing list management (MLM) software. The primary API interface is SOAP/HTTP (WSDL-based). This spec models the SOAP operations as REST-like endpoints for discoverability. In practice, these are SOAP actions sent via POST to the SOAP endpoint URL. Sympa 6.2+ also has a limited REST API for some operations. The API exposes 13 endpoints secured with apiKey authentication.
Subscribe to a list (SOAP)
Patterns agents use Sympa API for, with concrete tasks.
★ Communications Operations
Use the Sympa API to perform communications operations programmatically. The API provides 13 endpoints covering core functionality including soap endpoint, get wsdl service description, authenticate user (soap).
Call POST /sympasoap to soap endpoint
Automated Authentication Management
Automate authentication operations by combining multiple Sympa API endpoints. Agents can get wsdl service description and then authenticate user (soap) in a single workflow.
Call GET /sympa/wsdl to get wsdl service description, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Sympa 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 'soap endpoint', load the operation schema, and execute with Jentic-managed credentials
13 endpoints — sympa is an open-source mailing list management (mlm) software.
METHOD
PATH
DESCRIPTION
/sympasoap
SOAP endpoint
/sympa/wsdl
Get WSDL service description
/sympasoap/login
Authenticate user (SOAP)
/sympasoap/lists
List available mailing lists (SOAP)
/sympasoap/info
Get list information (SOAP)
/sympasoap/review
List members of a list (SOAP)
/sympasoap/subscribe
Subscribe to a list (SOAP)
/sympasoap/signoff
Unsubscribe from a list (SOAP)
/sympasoap
SOAP endpoint
/sympa/wsdl
Get WSDL service description
/sympasoap/login
Authenticate user (SOAP)
/sympasoap/lists
List available mailing lists (SOAP)
/sympasoap/info
Get list information (SOAP)
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Sympa API by hand means logging in for a session cookie, posting SOAP envelopes to /sympasoap against your own server URL, and parsing the WSDL yourself. Through Jentic you install once, import Sympa from the API Directory, store the credential once, and your agent calls it.
Permission scoping
Sympa carries the list name and target in the SOAP request body rather than the URL path, so scope the agent to the operations it needs, such as listing lists or reviewing subscribers. You choose that allowed set, so an operation you do not add, like subscribe or signoff, stays out of reach.
Credential isolation
Your Sympa credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list mailing lists' or 'review list subscribers', and Jentic returns the matching Sympa 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 Sympa API through Jentic.
What authentication does the Sympa API use?
The Sympa API uses an API key passed in the `sympa_session` cookie. 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 soap endpoint with the Sympa API?
Yes. Use the POST /sympasoap endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Sympa 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 soap endpoint through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'soap endpoint'. Jentic returns the matching Sympa API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Sympa API have?
The Sympa API exposes 13 endpoints covering authentication, discovery, lists operations.
/sympasoap/review
List members of a list (SOAP)
/sympasoap/subscribe
Subscribe to a list (SOAP)
/sympasoap/signoff
Unsubscribe from a list (SOAP)