So , we are planning to deploy an application based on user count , and I am trying to reset the restriction on subscription end date change . To achieve this I am trying to fetch license details from back end rather than from front end since, users can modify them in front end
and it’s not safe according to atlassian
Is there any way I can get information similar to this from back end
from what I have read through the community , below is the example JSON that we can get from front end from @forge/bridge, I am trying to receive similar or same response in backend
{
"active": true,
"type": "commercial",
"supportEntitlementNumber": null,
"trialEndDate": null,
"subscriptionEndDate": "2025-02-14T00:00:00.000Z",
"isEvaluation": false,
"billingPeriod": "ANNUAL",
"ccpEntitlementId": "00000000-0000-0000-0000-000000000000",
"ccpEntitlementSlug": "E-XXX-XXX-XXX-XXX"
}