ApiDQ license renew service #
The service allows you to renew the current ApiDQ license. When the method is called, the license validity period is extended by 1 month from the date of the request.
The service is available on the standalone server: requests are sent to the address of your gateway (http://127.0.0.1:8080 in the examples).
The service requires theProlongationServer = "https://api.apidq.io/v1"parameter in thelicensesection ofaddress-config.toml, andapi.apidq.io:443must be reachable from the server - see Install ApiDQ application
Method address #
POST /api/v1/license/renew
Query parameters #
This method takes no parameters.
Request data example #
curl -X POST "http://127.0.0.1:8080/api/v1/license/renew" \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'
Response options #
| Parameter | Description |
|---|---|
| success | Whether the license was successfully renewed |
| message | Human-readable description of the operation result |
| expiresAt | New license expiration date (ISO 8601 format) |
| renewedAt | Date and time of the renewal (ISO 8601 format) |
Response data example #
{
"success": true,
"message": "License successfully renewed",
"expiresAt": "2026-07-15T08:52:39Z",
"renewedAt": "2026-06-15T08:52:41Z"
}