Get Version Info Endpoint #
Retrieve detailed metadata for a specific version.
Endpoint #
POST /wp-json/dmsilm/v1/updates/info
Content-Type: application/json
Request Parameters #
| Parameter | Type | Required | Description |
|---|---|---|---|
license_key | string | Yes | Customer's license key |
product_id | integer | Yes | DDLS product ID |
version | string | Yes | The specific version to retrieve (e.g., "2.0.0") |
Response #
{
"version": "2.0.0",
"status": "published",
"channel": "stable",
"release_date": "2026-03-15",
"changelog": "<p>...</p>",
"file_size": 1234567,
"file_hash": "abc123...",
"download_url": "https://yoursite.com/dmsilm-download/?token=...",
"is_critical": false,
"requires_version": "",
"wordpress_min": "6.0",
"wordpress_max": "",
"php_min": "7.4",
"php_max": "",
"rollout_percentage": 100
}
Use Cases #
- Displaying release notes for a specific version in your software's update screen
- Verifying that a specific version exists before initiating a manual rollback
- Showing compatibility information to the user before they update
