API Changelog
Breaking changes, new features, and significant updates to epilot APIs. Subscribe via RSS
2026-03-03 Customer Portal API
- New
PRODUCT_RECOMMENDATIONS_WIDGETwidget type was added; the newProductRecommendationsWidgetschema (extendingTeaserWidgetwith acampaign_idfield) is now available across theGET /v2/portal/widgets,GET /v2/portal/public-widgets, andPOST /v2/portal/widgetsendpoints
2026-03-03 Pricing API External Catalog
- Breaking: The
catalog_typeenum values onPOST /integration/external-servicewere renamed:productsโproductandproducts-recommendationโproduct-recommendations; the corresponding response schema was also renamed fromExternalCatalogProductsRecommendationResponsetoExternalCatalogProductRecommendationsResponse
2026-03-03 Message API
- New
GET /v1/message/messages/{id}/emlendpoint was added, returning a302redirect to a pre-signed URL for downloading the message as an EML file - New optional
complete_threadfield was added to message creation and draft endpoints (POST /v1/message/messages,POST /v1/message/drafts), marking the thread as Done immediately after the message is sent
2026-03-02 Blueprint Manifest API
- New
POST /v2/blueprint-manifest/blueprints/{blueprint_id}:format-descriptionendpoint was added, which formats a blueprint description as markdown using AI (accepts atextfield, returnsmarkdown) - Breaking:
compatible_appsfield was removed fromMarketplaceBlueprintand replaced byrecommended_appsacross all blueprint endpoints - New optional fields
docs_url,recommended_apps,required_features, andzip_file_namewere added to all blueprint types (AppBlueprint,CustomBlueprint,DeployedBlueprint,FileBlueprint,MarketplaceBlueprint)
2026-03-02 Workflows Definition API
- New
GET /v2/flows/templates/{flowId}/exportendpoint was added, exporting a flow template with all referenced automations resolved and bundled - New
POST /v2/flows/templates/importendpoint was added, importing a flow template from an export payload and creating all referenced automations in the caller's organization - Two new
due_date_config/typeenum values were added to flow templates:A_PRECEDING_TASK_COMPLETEDandALL_PRECEDING_TASKS_COMPLETED, enabling task and phase due dates to be relative to predecessor task completion; affects all/v2/flows/templatesendpoints
2026-02-27 Workflows Execution API
- The
assigned_tofield on executions, phases, and tasks now accepts variable assignment objects ({ variable, value }) in addition to plain user ID strings, enabling dynamic assignee resolution during workflow execution; affectsPOST /v2/flows/executions,GETandPATCH /v2/flows/executions/{execution_id},PATCH /v2/flows/executions/{execution_id}/phases/{phase_id}, and task creation/update endpoints
2026-02-26 User API
- New passkey authentication and management endpoints were added:
POST /v2/users/public/passkeys:authenticateBeginand:authenticateBeginDiscoverablestart a WebAuthn authentication flow;POST /v2/users/public/passkeys:resolveCredentialresolves user identity from a discoverable assertion;POST /v2/users/me/passkeys:registerBeginand:registerCompletehandle passkey registration;GET /v2/users/me/passkeyslists registered passkeys;DELETE /v2/users/me/passkeys/{credentialId}removes a passkey - New
passkey_enabledboolean field was added toLoginParametersresponses, indicating whether passkey login is available for the organization
2026-02-26 ERP Integration API
- Breaking: The
requires_vpcfield in File Proxy use-case configuration is now read-only after creation โ it can no longer be set or updated via the API; affectsPOST /v1/integrations/{integrationId}/use-cases,PUT /v1/integrations/{integrationId}/use-cases/{useCaseId}, and their v2 equivalents
2026-02-26 Workflows Definition API
PhaseMarkedInProgressandPhaseSkippedentity sync trigger event values were re-added to flow templates (reverting the 2026-02-23 removal) โ affects all/v2/flows/templatesendpoints
2026-02-26 Workflows Execution API
PhaseMarkedInProgressandPhaseSkippedentity sync trigger event values were re-added to execution responses (reverting the 2026-02-23 removal);TaskMarkedOnHoldentity sync trigger event value was also added โ affectsPOST /v2/flows/executions,GET /v2/flows/executions/{execution_id},PATCH /v2/flows/executions/{execution_id}, andPOST /v2/flows/executions:search
2026-02-25 Access Token API
- New
last_usedfield was added to access token responses, indicating the date the token was last used (YYYY-MM-DDformat, 1-day accuracy); available inGET /v1/access-tokens,POST /v1/access-tokens, andDELETE /v1/access-tokens/{id}responses
2026-02-25 Billing API
- Breaking:
booking_date(date) is now a required field when creating or updating billing events โ affectsPOST /v1/billing/eventsandPATCH /v1/billing/events/{id} - Breaking:
due_dateonInstallmentEventchanged fromdate-timetodateformat - Six new billing event types were added to the
BillingEventunion:payment,dunning_fee,final_bill,bonus,correction, andcustomโ clients parsing event responses should handle these new variants - New optional fields were added to all billing event types:
direction(debit/credit),status(open/closed),related_event,external_link,attachments,note, andinternal_note
2026-02-25 App API
- New
CUSTOM_PAGEapp component type was added โ the newCustomPageComponentschema includes a requiredslugfield (URL route, e.g."zapier") and optionalnav_label,nav_icon, andnav_descriptionnavigation fields; supported across all app and app-configuration endpoints
2026-02-25 GenAI API
- New
POST /v1/genai/entity/{slug}/{entity_id}/summaryendpoint was added to generate AI summaries for entities, streaming the response viatext/event-stream; supports optionallanguage(de/en),variant(short/detailed/action_points), andcurrent_summaryparameters
2026-02-25 Workflows Definition API
- Automation triggers and tasks in flow templates now support inline configuration: new optional
trigger_configarray onAutomationTriggerand new optionalaction_configobject onAutomationTask.automation_configallow automation flows to be created or updated in place without a pre-existing ID โautomation_idon triggers andflow_idon automation configs are now optional; affects all/v2/flows/templatesendpoints
2026-02-24 ERP Integration API
- Breaking:
payloadfield on event update endpoints now enforces stricter validation โ string payloads requireminLength: 2and object payloads requireminProperties: 1; affectsPOST /v1/erp/updates/events,POST /v2/erp/updates/events, andPOST /v3/erp/updates/events - New
warningsarray was added to mapping simulation responses (POST /v1/erp/updates/mapping_simulation,POST /v2/erp/updates/mapping_simulation), reporting validation issues about the configuration such as unique ID fields referencing non-indexed attributes
2026-02-23 Message API
- New
POST /v2/message/threads/{id}/assign:usersendpoint was added, allowing users to be added or removed from a message thread
2026-02-23 Workflows Execution API
PhaseMarkedInProgressandPhaseSkippedenum values were removed from thetrigger/eventfield in entity sync responses โ affectsPOST /v2/flows/executions,GET /v2/flows/executions/{execution_id},PATCH /v2/flows/executions/{execution_id}, andPOST /v2/flows/executions:search
2026-02-23 Workflows Definition API
PhaseMarkedInProgressandPhaseSkippedenum values were removed from theentity_sync/trigger/eventfield across all flow template endpoints โ affects request body ofPOSTandPUT /v2/flows/templates/{flowId}, and responses ofGET,POST,PUT /v2/flows/templates,POST /v2/flows/templates:search- New
TaskMarkedOnHoldtrigger event value was added toentity_sync/trigger/event, enabling entity sync rules to fire when a task is placed on hold
2026-02-23 Customer Portal API
- New
allowed_portal_entitiesfield was added to portal config request and response schemas โ accepts an array of entity slugs (e.g.,contact,contract) to restrict which entity types are accessible in the portal; available across all v2 and v3 portal config endpoints
2026-02-23 Automation API
- New
assign-threadautomation action type was added โAssignThreadActionandAssignThreadConfigschemas allow automations to add or remove assignees from message threads
2026-02-23 Meter Entity
- New
me_lo_idfield was added for storing the MeLo-ID (Messlokation) measurement location identifier
2026-02-22 Blueprint Manifest API
- New optional
archivedquery parameter was added toGET /v2/blueprint-manifest/blueprintsto filter by archived status - New optional
archivedfield was added to blueprint objects, indicating whether a blueprint is soft-deleted and hidden from the main list
2026-02-22 Entity API
- New
tableschema attribute type was added
2026-02-20 ERP Integration API
- Integration create/update/get response schemas restructured โ fields now composed via
allOf[IntegrationEditableFields]; SDK consumers should regenerate types settings.autoRefresh.minIntervalBetweenSyncsMinuteswas removed from integration settings