Reactivate a License
DESCRIPTION
Increments the times_activated value by one (1). The plugin will check if there is a times_activated_max value, if there is and if the times_activated value has not reached the limit set by times_activated_max, then the times_activated will be incremented by 1, and the updated license key and activation data object will be returned, it will reactivate the activation token by passing in the parameters
REQUEST URL
GET
/wp-json/lmfwc/v2/licenses/activate/{license_key}
RESPONSE EXAMPLE:
{
"success":true,
"data":{
"id":1,
"orderId":165,
"productId":20,
"userId":1,
"licenseKey":"FIRST",
"expiresAt":"2023-12-28 00:00:00",
"validFor":null,
"source":2,
"status":2,
"timesActivated":2,
"timesActivatedMax":5,
"createdAt":"2023-12-11 07:27:15",
"updatedAt":"2023-12-22 11:07:44",
"activationData":{
"id":6,
"token":"8f04017840bd40f993e5712403e4ed945a2aeb7c",
"license_id":1,
"label":null,
"source":2,
"ip_address":"127.0.0.1",
"user_agent":"PostmanRuntime/7.36.0",
"meta_data":null,
"created_at":"2023-12-22 11:07:44",
"updated_at":null,
"deactivated_at":null
}
}
}