Disconnected mode licensing tool

This page documents an optional helper app for generating a curl request for disconnected licensing telemetry.

If you want to run the helper locally as a standalone HTML file, download it directly from the docs site (i.e. right-click and “Save As” or similar in your browser):

The app runs entirely client-side and does not require a server. You can download it to your desktop and open it from your browser.

Example workflow

  1. Open the helper app in a browser.
  2. Upload your disconnected licensing JSON payload.
  3. Paste your license JSON Web Token (JWT).
  4. Click Generate curl and copy the curl command for your platform (macOS, Linux, or Windows).
  5. Run the command from your terminal to produce license-manifest-YYYY-MM-DD.json. The file is saved in the same directory where you run the curl command.

The curl command will look something like this:

curl -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eyJhbG...." \
  -d '{"report":"eyJhbG...."}' \
  -o license-manifest-2026-03-10.json \
  "https://product.apis.f5.com/ee/v1/entitlements/telemetry"