Skip to content

Returns the current Pro licence state, including expiry and a renewal URL when the licence has lapsed.

The licence key itself is stripped from the response. A remote lookup failure is reported as an invalid status with the error message rather than as an HTTP error.

Endpoint

  • Method: GET

  • Path: /admin/license

  • Edition: PRO

  • Controller: LicenseController@getStatus

  • Route source: fluent-community-pro/app/Http/Routes/api.php:17

  • Controller source: fluent-community-pro/app/Http/Controllers/LicenseController.php

  • Requires the FluentCommunity community-admin permission (or a WordPress super admin).

  • Requires FluentCommunity Pro.

Live sample

The request and response below were recorded against a running FluentCommunity install and then anonymised — member names, emails, avatars and post content are fictional, and long collections are trimmed to a few entries.

GET Get License Status

GET
/admin/license

Returns the current Pro licence state, including expiry and a renewal URL when the licence has lapsed.

Controller: LicenseController@getStatus
Route source: fluent-community-pro/app/Http/Routes/api.php:17

Authorizations

ApplicationPasswords

WordPress Application Passwords — use Basic auth with username:application_password.

Type
API Key (header: Authorization)

Responses

Successful response

application/json
JSON
{
  
"activation_hash": "string",
  
"activation_limit": 0,
  
"activations_count": 0,
  
"customer_email_masked": "string",
  
"customer_name": "string",
  
"error_message": "string",
  
"error_type": "string",
  
"expires": "string",
  
"is_expired": true,
  
"last_checked": "string",
  
"licensed_at": "string",
  
"product_title": "string",
  
"purchase_url": "string",
  
"renew_url": "string",
  
"status": "string",
  
"subscription_status": "string",
  
"variation_id": "string",
  
"variation_title": "string"
}

Playground

Authorization

Samples

Powered by VitePress OpenAPI

FluentCommunity developer documentation