Full Release Notes
|
External API Credentials & API Request Component |
A new Key capabilities:
API Request Execution The new Example usage
Highlights:
Availability: Both |
|
API Application Scopes |
Add support for API scope management based on Swagger specifications. In Scopes are automatically generated from API paths following the pattern If permissions are missing, an error message is triggered:
This update improves API access control, making it clearer and easier to manage granular permissions across admin and frontend integrations. |
|
Open API type for server-side, mobile app |
Add support for optional To enable signing, append the When enabled, each webhook request includes timestamp, event name, and signature headers generated with the provided secret, allowing the receiver to verify that the payload is authentic and unmodified. |
|
HMAC Signature for Outgoing Webhooks |
Add A new
|
|
Special Characters in File Names |
Improve file upload and rendering to ensure images with special characters or spaces in file names display correctly across both the admin and front end. File names are now normalized during upload (invalid characters replaced with Examples:
This ensures consistent image display and eliminates broken links caused by unsupported characters. |
|
Bugfixes |
The following issues have been resolved:
|
External API Credentials
- A new "api_request" component that lets you connect your website directly to external APIs, without any backend code. Use it to pull or send data between your site and third-party services such as CRMs, payment systems, or inventory tools. The component securely uses saved API credentials and returns structured data that can be displayed or processed inside your templates. Perfect...
- Liquid
- Open API
API Application Scopes
- Enable granular access control for API applications using scopes. Scopes are defined per API group (Admin v1, Admin v2, Frontend v2) and managed in the API Applications → SCOPES tab with searchable, grouped entities and read/write/delete checkboxes.
- Open API
HMAC Signature for Outgoing Webhooks
- All outgoing webhooks can now be optionally signed with HMAC-SHA256 to ensure authenticity and data integrity. When enabled, each webhook includes timestamp, event name, and signature headers generated using either the webhook’s secret or the API application’s client secret.
- Open API
Open API type for server-side, mobile app
- A Type field has been added to API Applications (create and edit) with two options: Server-to-Server (default) and iOS. For Server-to-Server, no additional fields are required. When iOS is selected, BundleId and TeamId fields are displayed. iOS applications are verified using their associated keys to ensure authenticity and secure integration.
- Open API
Special Characters in File Names
- Improve file upload and rendering so images with special characters are always displayed correctly. File names are normalized on upload (invalid characters replaced with -), and properly URL-encoded when rendered.