# Jelliu Developers Start the quickstart Get an API key Browse the API reference ## Get started #### [Quickstart](/quickstart) Create a key, list your agents and launch your first campaign in minutes. #### [Authentication](/authentication) API keys, scopes and what a `full` key unlocks. #### [API reference](/api-reference) Every endpoint with parameters, examples and a live request console. ## Make your first request Every request goes to `https://api.jelliu.co` with a Bearer API key. **`cURL`** ```bash cURL curl https://api.jelliu.co/api/agents?limit=20 \ -H "Authorization: Bearer $JELLIU_API_KEY" ``` **`Node.js`** ```javascript Node.js const res = await fetch("https://api.jelliu.co/api/agents?limit=20", { headers: { Authorization: `Bearer ${process.env.JELLIU_API_KEY}` }, }); const { data } = await res.json(); ``` **`Python`** ```python Python import os, requests res = requests.get( "https://api.jelliu.co/api/agents", params={"limit": 20}, headers={"Authorization": f"Bearer {os.environ['JELLIU_API_KEY']}"}, ) agents = res.json()["data"] ``` ## Build on the platform #### [Webhooks](/webhooks) Receive signed events when calls finish, and verify them in a few lines. #### [MCP server](/mcp) Give Claude, ChatGPT or Cursor safe access to your workspace. #### [Web chat widget](/widget) Embed a voice and chat agent on your site with one script tag. #### [Errors and limits](/errors) Error envelope, stable codes, rate limits and retry guidance. ## For AI agents This site is readable by machines: every page has a Markdown version (append `.md`), [`/llms.txt`](/llms.txt) indexes the whole portal, and the docs expose an MCP server at `https://developer.jelliu.co/_mcp/server`. The raw OpenAPI 3.1 document is always live at [`api.jelliu.co/openapi.public.yaml`](https://api.jelliu.co/openapi.public.yaml). Questions or something missing? Write to [support@jelliu.com](mailto:support@jelliu.com). > Build on Jelliu's AI voice and omnichannel agents — REST API, webhooks and MCP. ## Instructions for AI Agents - For clean Markdown of any page, append `.md` to the page URL - For section-specific indexes, append `/llms.txt` to any section URL - For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developer.jelliu.co/_mcp/server ## Docs - [Introduction](https://developer.jelliu.co/introduction.md): Build on Jelliu's AI voice and omnichannel agents. - [Quickstart](https://developer.jelliu.co/quickstart.md): From zero to your first campaign in a few minutes. - [Authentication](https://developer.jelliu.co/authentication.md): API keys, scopes, and what each scope can reach. - [Agents](https://developer.jelliu.co/resources/agents.md): Create, configure, pause and version the AI agents that talk to your customers on voice and text channels. - [Calls](https://developer.jelliu.co/resources/calls.md): Place outbound calls, follow their lifecycle, read outcomes and transcripts, stream recordings and hand live calls to a person. - [Campaigns](https://developer.jelliu.co/resources/campaigns.md): Run one agent against a list of contacts, on one channel, inside a schedule you control. - [Contacts](https://developer.jelliu.co/resources/contacts.md): The people your agents reach: add them one by one, in bulk or from a CSV, and keep opted-out numbers silent. - [Conversations](https://developer.jelliu.co/resources/conversations.md): One thread per contact and channel for WhatsApp, email, web chat and social messages, with the agent's analysis attached. - [Knowledge base](https://developer.jelliu.co/resources/knowledge-base.md): Upload the documents an agent answers from: catalogs, price lists, policies and FAQs. - [Phone numbers](https://developer.jelliu.co/resources/phone-numbers.md): Buy a dedicated number, connect the one you already have, and decide which agent answers it. - [WhatsApp](https://developer.jelliu.co/channels/whatsapp.md): Register a sender, get templates approved by Meta, and message contacts inside and outside the 24-hour window. - [Email](https://developer.jelliu.co/channels/email.md): Send email from your own connected mailbox, continue threads, and control which replies an agent answers. - [Web chat](https://developer.jelliu.co/channels/webchat.md): The runtime API behind the widget: sessions, messages, realtime replies, attachments and browser voice. - [Integrations](https://developer.jelliu.co/platform/integrations.md): Give agents tools from connected apps and your own MCP servers, and control which agent may use what. - [Zapier](https://developer.jelliu.co/platform/zapier.md): Start Zaps from calls, campaigns and contacts with Jelliu's REST Hook triggers. - [Analytics and reports](https://developer.jelliu.co/platform/analytics-and-reports.md): Read call and conversation KPIs, time series, campaign KPIs, generated reports and bulk data exports. - [Compliance](https://developer.jelliu.co/platform/compliance.md): Suppression lists, opt-out, contact hours, disclosures, consent, retention, erasure and the audit log. - [Billing and usage](https://developer.jelliu.co/platform/billing-and-usage.md): Read your plan, consumption and limits from the API, and handle the errors plan limits return. - [API keys](https://developer.jelliu.co/platform/api-keys.md): Key lifecycle, the exact reach of each scope, rotation without downtime, and how to audit every credential. - [Errors](https://developer.jelliu.co/errors.md): One error envelope, stable codes, human-readable messages. - [Rate limits](https://developer.jelliu.co/rate-limits.md): Per-workspace request budgets, the headers that describe them, and how to back off. - [Pagination](https://developer.jelliu.co/pagination.md): How list endpoints page through results. - [Webhooks](https://developer.jelliu.co/webhooks.md): Receive signed events from Jelliu when calls end, campaigns complete and more. - [MCP server](https://developer.jelliu.co/mcp.md): Operate your Jelliu workspace from Claude, ChatGPT, Cursor and other MCP clients. - [Web chat widget](https://developer.jelliu.co/widget.md): Put a Jelliu agent on your website with one script tag. - [Security](https://developer.jelliu.co/security.md): How Jelliu protects your workspace, and what your integration should do on its side. - [Versioning and stability](https://developer.jelliu.co/versioning.md): What can change in the Jelliu API, what will not, and how to build a client that keeps working. - [Run an outbound voice campaign](https://developer.jelliu.co/recipes/outbound-voice-campaign.md): Create an agent, build a campaign, import contacts, activate it, receive call.completed webhooks and read the results, end to end. - [CRM sync with webhooks](https://developer.jelliu.co/recipes/crm-sync-with-webhooks.md): Build a receiver that verifies Jelliu webhooks, survives retries and writes every call outcome to your CRM exactly once. - [Embed a voice and chat agent on your site](https://developer.jelliu.co/recipes/embed-voice-and-chat-agent.md): Create a widget, lock it to your domains, ship the embed, build a custom UI, add browser voice and take over as a human. - [Operate Jelliu from an AI assistant](https://developer.jelliu.co/recipes/ai-assistant-via-mcp.md): Connect Claude Code, Cursor or Claude.ai to mcp.jelliu.co, pick a safe scope, and drive your workspace in plain language. - [Changelog](https://developer.jelliu.co/changelog.md): Notable changes to the Jelliu API and its documentation. ## API Docs - API Reference > Agents [List agents](https://developer.jelliu.co/api-reference/agents/get-agents.md) - API Reference > Agents [Create an agent](https://developer.jelliu.co/api-reference/agents/post-agents.md) - API Reference > Agents [Retrieve an agent](https://developer.jelliu.co/api-reference/agents/get-agents-by-agent-id.md) - API Reference > Agents [Delete an agent](https://developer.jelliu.co/api-reference/agents/delete-agents-by-agent-id.md) - API Reference > Agents [Update an agent](https://developer.jelliu.co/api-reference/agents/patch-agents-by-agent-id.md) - API Reference > Agents [List A/B variants](https://developer.jelliu.co/api-reference/agents/get-agents-by-agent-id-ab-tests.md) - API Reference > Agents [Create an A/B variant](https://developer.jelliu.co/api-reference/agents/post-agents-by-agent-id-ab-tests.md) - API Reference > Agents [Compare A/B variant performance](https://developer.jelliu.co/api-reference/agents/get-agents-by-agent-id-ab-tests-results.md) - API Reference > Agents [Delete an A/B variant](https://developer.jelliu.co/api-reference/agents/delete-agents-by-agent-id-ab-tests-by-variant-id.md) - API Reference > Agents [Update an A/B variant](https://developer.jelliu.co/api-reference/agents/patch-agents-by-agent-id-ab-tests-by-variant-id.md) - API Reference > Agent Tools [List agent tools](https://developer.jelliu.co/api-reference/agent-tools/get-agents-by-agent-id-tools.md) - API Reference > Agent Tools [Create an agent tool](https://developer.jelliu.co/api-reference/agent-tools/post-agents-by-agent-id-tools.md) - API Reference > Agent Tools [Retrieve an agent tool](https://developer.jelliu.co/api-reference/agent-tools/get-agents-by-agent-id-tools-by-tool-id.md) - API Reference > Agent Tools [Delete an agent tool](https://developer.jelliu.co/api-reference/agent-tools/delete-agents-by-agent-id-tools-by-tool-id.md) - API Reference > Agent Tools [Update an agent tool](https://developer.jelliu.co/api-reference/agent-tools/patch-agents-by-agent-id-tools-by-tool-id.md) - API Reference > Calls [List calls](https://developer.jelliu.co/api-reference/calls/get-calls.md) - API Reference > Calls [Create a call](https://developer.jelliu.co/api-reference/calls/post-calls.md) - API Reference > Calls [Retrieve a call](https://developer.jelliu.co/api-reference/calls/get-calls-by-call-id.md) - API Reference > Calls [Retrieve a call recording](https://developer.jelliu.co/api-reference/calls/get-calls-by-call-id-audio.md) - API Reference > Calls [Hang up a call](https://developer.jelliu.co/api-reference/calls/post-calls-by-call-id-hangup.md) - API Reference > Calls [Start a warm transfer](https://developer.jelliu.co/api-reference/calls/post-calls-by-call-id-transfer.md) - API Reference > Calls [Complete a warm transfer](https://developer.jelliu.co/api-reference/calls/post-calls-by-call-id-transfer-complete.md) - API Reference > Calls [Cancel a warm transfer](https://developer.jelliu.co/api-reference/calls/post-calls-by-call-id-transfer-cancel.md) - API Reference > Campaigns [List campaigns](https://developer.jelliu.co/api-reference/campaigns/get-campaigns.md) - API Reference > Campaigns [Create a campaign](https://developer.jelliu.co/api-reference/campaigns/post-campaigns.md) - API Reference > Campaigns [Retrieve a campaign](https://developer.jelliu.co/api-reference/campaigns/get-campaigns-by-campaign-id.md) - API Reference > Campaigns [Delete a campaign](https://developer.jelliu.co/api-reference/campaigns/delete-campaigns-by-campaign-id.md) - API Reference > Campaigns [Update a campaign](https://developer.jelliu.co/api-reference/campaigns/patch-campaigns-by-campaign-id.md) - API Reference > Campaigns [Activate a campaign](https://developer.jelliu.co/api-reference/campaigns/patch-campaigns-by-campaign-id-activate.md) - API Reference > Campaigns [Pause a campaign](https://developer.jelliu.co/api-reference/campaigns/patch-campaigns-by-campaign-id-pause.md) - API Reference > Contacts [List a campaign's contacts](https://developer.jelliu.co/api-reference/contacts/get-campaigns-by-campaign-id-contacts.md) - API Reference > Contacts [Add a contact](https://developer.jelliu.co/api-reference/contacts/post-campaigns-by-campaign-id-contacts.md) - API Reference > Contacts [Add contacts in bulk](https://developer.jelliu.co/api-reference/contacts/post-campaigns-by-campaign-id-contacts-bulk.md) - API Reference > Contacts [Preview a CSV import](https://developer.jelliu.co/api-reference/contacts/post-campaigns-by-campaign-id-contacts-upload-preview.md) - API Reference > Contacts [Import a previewed CSV](https://developer.jelliu.co/api-reference/contacts/post-campaigns-by-campaign-id-contacts-upload-confirm.md) - API Reference > Contacts [Download the CSV template](https://developer.jelliu.co/api-reference/contacts/get-campaigns-by-campaign-id-contacts-upload-template.md) - API Reference > Conversations [List conversations](https://developer.jelliu.co/api-reference/conversations/get-conversations.md) - API Reference > Conversations [Start a conversation](https://developer.jelliu.co/api-reference/conversations/post-conversations.md) - API Reference > Conversations [Retrieve a conversation](https://developer.jelliu.co/api-reference/conversations/get-conversations-by-conversation-id.md) - API Reference > Conversations [Send an operator reply](https://developer.jelliu.co/api-reference/conversations/post-conversations-by-conversation-id-messages.md) - API Reference > Conversations [Resolve a human-help request](https://developer.jelliu.co/api-reference/conversations/post-conversations-by-conversation-id-needs-human-resolve.md) - API Reference > Whats App [Send a WhatsApp message](https://developer.jelliu.co/api-reference/whats-app/post-whatsapp-send.md) - API Reference > Whats App [Reach a contact on WhatsApp](https://developer.jelliu.co/api-reference/whats-app/post-whatsapp-reach.md) - API Reference > Email [Send an email](https://developer.jelliu.co/api-reference/email/post-email-send.md) - API Reference > Webchat [Send a webchat message](https://developer.jelliu.co/api-reference/webchat/post-webchat-message.md) - API Reference > Webchat [List webchat messages](https://developer.jelliu.co/api-reference/webchat/get-webchat-by-conversation-id-history.md) - API Reference > Webchat [Close a conversation](https://developer.jelliu.co/api-reference/webchat/post-webchat-by-conversation-id-close.md) - API Reference > Widgets [List widgets](https://developer.jelliu.co/api-reference/widgets/get-widgets.md) - API Reference > Widgets [Create a widget](https://developer.jelliu.co/api-reference/widgets/post-widgets.md) - API Reference > Widgets [Retrieve a widget](https://developer.jelliu.co/api-reference/widgets/get-widgets-by-id.md) - API Reference > Widgets [Update a widget](https://developer.jelliu.co/api-reference/widgets/put-widgets-by-id.md) - API Reference > Widgets [Delete a widget](https://developer.jelliu.co/api-reference/widgets/delete-widgets-by-id.md) - API Reference > Widgets [Start a widget session](https://developer.jelliu.co/api-reference/widgets/post-widget-init.md) - API Reference > Widgets [Send a widget message](https://developer.jelliu.co/api-reference/widgets/post-widget-message.md) - API Reference > Widgets [Poll for agent replies](https://developer.jelliu.co/api-reference/widgets/get-widget-poll.md) - API Reference > Widgets [Retrieve a session transcript](https://developer.jelliu.co/api-reference/widgets/get-widget-history.md) - API Reference > Widgets [Create a widget voice session](https://developer.jelliu.co/api-reference/widgets/post-widget-voice-session.md) - API Reference > Phone Numbers [List phone numbers](https://developer.jelliu.co/api-reference/phone-numbers/get-phone-numbers.md) - API Reference > Phone Numbers [Buy a phone number](https://developer.jelliu.co/api-reference/phone-numbers/post-phone-numbers-provision.md) - API Reference > Phone Numbers [Connect a SIP trunk number](https://developer.jelliu.co/api-reference/phone-numbers/post-phone-numbers-connect-sip.md) - API Reference > Phone Numbers [Search available numbers](https://developer.jelliu.co/api-reference/phone-numbers/get-phone-numbers-available.md) - API Reference > Phone Numbers [Retrieve a phone number](https://developer.jelliu.co/api-reference/phone-numbers/get-phone-number-by-id.md) - API Reference > Phone Numbers [Update a phone number](https://developer.jelliu.co/api-reference/phone-numbers/patch-phone-number-by-id.md) - API Reference > Phone Numbers [Retrieve forwarding instructions](https://developer.jelliu.co/api-reference/phone-numbers/get-phone-number-forwarding-instructions.md) - API Reference > Knowledge [List knowledge documents](https://developer.jelliu.co/api-reference/knowledge/get-agents-by-agent-id-knowledge.md) - API Reference > Knowledge [Upload a knowledge document](https://developer.jelliu.co/api-reference/knowledge/post-agents-by-agent-id-knowledge.md) - API Reference > Knowledge [Delete a knowledge document](https://developer.jelliu.co/api-reference/knowledge/delete-agents-by-agent-id-knowledge-by-doc-id.md) - API Reference > Integrations [List integrations](https://developer.jelliu.co/api-reference/integrations/get-integrations.md) - API Reference > Integrations [Create an integration](https://developer.jelliu.co/api-reference/integrations/post-integrations.md) - API Reference > Integrations [Retrieve an integration](https://developer.jelliu.co/api-reference/integrations/get-integrations-by-integration-id.md) - API Reference > Integrations [Delete an integration](https://developer.jelliu.co/api-reference/integrations/delete-integrations-by-integration-id.md) - API Reference > Integrations [Update an integration](https://developer.jelliu.co/api-reference/integrations/patch-integrations-by-integration-id.md) - API Reference > Integrations [Test an integration](https://developer.jelliu.co/api-reference/integrations/post-integrations-by-integration-id-test.md) - API Reference > Integrations [Retrieve an inbound webhook schema](https://developer.jelliu.co/api-reference/integrations/get-integrations-by-integration-id-webhook-schema.md) - API Reference > Webhooks [List webhooks](https://developer.jelliu.co/api-reference/webhooks/get-webhooks.md) - API Reference > Webhooks [Create a webhook](https://developer.jelliu.co/api-reference/webhooks/post-webhooks.md) - API Reference > Webhooks [Retrieve a webhook](https://developer.jelliu.co/api-reference/webhooks/get-webhooks-by-webhook-id.md) - API Reference > Webhooks [Delete a webhook](https://developer.jelliu.co/api-reference/webhooks/delete-webhooks-by-webhook-id.md) - API Reference > Webhooks [Update a webhook](https://developer.jelliu.co/api-reference/webhooks/patch-webhooks-by-webhook-id.md) - API Reference > Webhooks [Rotate a webhook's signing secret](https://developer.jelliu.co/api-reference/webhooks/post-webhooks-by-webhook-id-rotate-secret.md) - API Reference > Webhooks [List a webhook's delivery attempts](https://developer.jelliu.co/api-reference/webhooks/get-webhooks-by-webhook-id-delivery-logs.md) - API Reference > Mcp Servers [List an agent's MCP servers](https://developer.jelliu.co/api-reference/mcp-servers/get-agents-by-agent-id-mcp-servers.md) - API Reference > Mcp Servers [Assign an MCP server to an agent](https://developer.jelliu.co/api-reference/mcp-servers/post-agents-by-agent-id-mcp-servers.md) - API Reference > Mcp Servers [Remove an MCP server from an agent](https://developer.jelliu.co/api-reference/mcp-servers/delete-agents-by-agent-id-mcp-servers-by-mcp-server-id.md) - API Reference > Mcp Servers [List MCP servers](https://developer.jelliu.co/api-reference/mcp-servers/get-mcp-servers.md) - API Reference > Mcp Servers [Create an MCP server](https://developer.jelliu.co/api-reference/mcp-servers/post-mcp-servers.md) - API Reference > Mcp Servers [List hosted MCP providers](https://developer.jelliu.co/api-reference/mcp-servers/get-mcp-servers-providers.md) - API Reference > Mcp Servers [Retrieve an MCP server](https://developer.jelliu.co/api-reference/mcp-servers/get-mcp-servers-by-mcp-server-id.md) - API Reference > Mcp Servers [Delete an MCP server](https://developer.jelliu.co/api-reference/mcp-servers/delete-mcp-servers-by-mcp-server-id.md) - API Reference > Mcp Servers [Update an MCP server](https://developer.jelliu.co/api-reference/mcp-servers/patch-mcp-servers-by-mcp-server-id.md) - API Reference > Analytics [Retrieve the call overview](https://developer.jelliu.co/api-reference/analytics/get-analytics-overview.md) - API Reference > Analytics [Compare inbound and outbound calls](https://developer.jelliu.co/api-reference/analytics/get-analytics-overview-by-direction.md) - API Reference > Analytics [List daily call metrics](https://developer.jelliu.co/api-reference/analytics/get-analytics-calls-per-day.md) - API Reference > Analytics [List call metrics by hour of day](https://developer.jelliu.co/api-reference/analytics/get-analytics-calls-by-hour.md) - API Reference > Analytics [List daily sentiment](https://developer.jelliu.co/api-reference/analytics/get-analytics-sentiment-trend.md) - API Reference > Analytics [List top campaigns](https://developer.jelliu.co/api-reference/analytics/get-analytics-top-campaigns.md) - API Reference > Analytics [List agent rankings](https://developer.jelliu.co/api-reference/analytics/get-analytics-agent-ranking.md) - API Reference > Analytics [Retrieve conversation quality](https://developer.jelliu.co/api-reference/analytics/get-analytics-quality.md) - API Reference > Analytics [Retrieve campaign analytics](https://developer.jelliu.co/api-reference/analytics/get-analytics-campaigns-by-campaign-id.md) - API Reference > Analytics [Retrieve the text conversation overview](https://developer.jelliu.co/api-reference/analytics/get-analytics-conversations-overview.md) - API Reference > Analytics [List evaluation criteria results for text conversations](https://developer.jelliu.co/api-reference/analytics/get-analytics-conversations-criteria.md) - API Reference > Analytics [List the daily sentiment trend for text conversations](https://developer.jelliu.co/api-reference/analytics/get-analytics-conversations-sentiment-trend.md) - API Reference > Analytics [List text conversations needing attention](https://developer.jelliu.co/api-reference/analytics/get-analytics-conversations-attention.md) - API Reference > Analytics [Retrieve the distribution of a collected field in text conversations](https://developer.jelliu.co/api-reference/analytics/get-analytics-conversations-field-by-field.md) - API Reference > Analytics [List evaluation criteria results across voice and text](https://developer.jelliu.co/api-reference/analytics/get-analytics-analysis-criteria.md) - API Reference > Analytics [List extracted data-collection values across voice and text](https://developer.jelliu.co/api-reference/analytics/get-analytics-analysis-data-collection.md) - API Reference > Analytics [Retrieve the workspace KPI summary](https://developer.jelliu.co/api-reference/analytics/get-analytics-kpi-tenant-summary.md) - API Reference > Analytics [Retrieve a KPI template](https://developer.jelliu.co/api-reference/analytics/get-analytics-kpi-templates-by-category.md) - API Reference > Analytics [Retrieve campaign KPIs](https://developer.jelliu.co/api-reference/analytics/get-analytics-kpi-by-campaign-id.md) - API Reference > Analytics [List a campaign KPI time series](https://developer.jelliu.co/api-reference/analytics/get-analytics-kpi-by-campaign-id-timeseries.md) - API Reference > Analytics [List the objection ranking for a campaign](https://developer.jelliu.co/api-reference/analytics/get-analytics-kpi-by-campaign-id-objections.md) - API Reference > Reports [Generate a report](https://developer.jelliu.co/api-reference/reports/post-reports.md) - API Reference > Reports [List report types](https://developer.jelliu.co/api-reference/reports/get-reports-types.md) - API Reference > Exports [List export jobs](https://developer.jelliu.co/api-reference/exports/get-exports.md) - API Reference > Exports [Create an export job](https://developer.jelliu.co/api-reference/exports/post-exports.md) - API Reference > Exports [Retrieve an export job](https://developer.jelliu.co/api-reference/exports/get-exports-by-id.md) - API Reference > Exports [Delete an export job](https://developer.jelliu.co/api-reference/exports/delete-exports-by-id.md) - API Reference > Exports [Download an export file](https://developer.jelliu.co/api-reference/exports/get-exports-by-id-download.md) - API Reference > Billing [Retrieve the subscription](https://developer.jelliu.co/api-reference/billing/get-billing-subscription.md) - API Reference > Billing [Retrieve usage for the current month](https://developer.jelliu.co/api-reference/billing/get-billing-usage.md) - API Reference > Billing [Retrieve plan limits](https://developer.jelliu.co/api-reference/billing/get-billing-limits.md) - API Reference > Billing [Retrieve weekly AI credit usage](https://developer.jelliu.co/api-reference/billing/get-billing-ai-usage.md) - API Reference > Compliance [Grant consent](https://developer.jelliu.co/api-reference/compliance/post-compliance-consent.md) - API Reference > Compliance [Revoke consent](https://developer.jelliu.co/api-reference/compliance/delete-compliance-consent.md) - API Reference > Compliance [List a contact's consent history](https://developer.jelliu.co/api-reference/compliance/get-compliance-consent-by-contact-id.md) - API Reference > Compliance [Check a contact's consent](https://developer.jelliu.co/api-reference/compliance/get-compliance-consent-check-by-contact-id-by-consent-type.md) - API Reference > Compliance [Erase a contact's personal data](https://developer.jelliu.co/api-reference/compliance/post-compliance-erase-by-contact-id.md) - API Reference > Compliance [Retrieve the retention window](https://developer.jelliu.co/api-reference/compliance/get-compliance-retention.md) - API Reference > Compliance [Update the retention window](https://developer.jelliu.co/api-reference/compliance/put-compliance-retention.md) - API Reference > Compliance [Retrieve the suppression list summary](https://developer.jelliu.co/api-reference/compliance/get-compliance-suppressions.md) - API Reference > Compliance [Release a suppressed number](https://developer.jelliu.co/api-reference/compliance/delete-compliance-suppressions.md) - API Reference > Compliance [Import numbers into the suppression list](https://developer.jelliu.co/api-reference/compliance/post-compliance-suppressions-import.md) - API Reference > Compliance [List country compliance configs](https://developer.jelliu.co/api-reference/compliance/get-compliance-configs.md) - API Reference > Compliance [Create or replace a country compliance config](https://developer.jelliu.co/api-reference/compliance/put-compliance-configs.md) - API Reference > Compliance [Retrieve a country compliance config](https://developer.jelliu.co/api-reference/compliance/get-compliance-configs-by-country-code.md) - API Reference > Compliance [Delete a country compliance config](https://developer.jelliu.co/api-reference/compliance/delete-compliance-configs-by-country-code.md) - API Reference > Compliance [Retrieve a country's default compliance rules](https://developer.jelliu.co/api-reference/compliance/get-compliance-defaults-by-country-code.md) - API Reference > Compliance [Check whether a number may be contacted now](https://developer.jelliu.co/api-reference/compliance/post-compliance-check-call.md) - API Reference > Audit [List audit log entries](https://developer.jelliu.co/api-reference/audit/get-audit.md) - API Reference > Audit [Verify the audit log's integrity](https://developer.jelliu.co/api-reference/audit/get-audit-verify-chain.md) - API Reference > Audit [Retrieve an audit log entry](https://developer.jelliu.co/api-reference/audit/get-audit-by-id.md) ## OpenAPI Specification The raw OpenAPI 3.1 specification for this API is available at: - [OpenAPI JSON](https://developer.jelliu.co/openapi.json) - [OpenAPI YAML](https://developer.jelliu.co/openapi.yaml)