Return compact operational counters for runtime entitlements.
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Get, RequestUri = new Uri("https://example.com/api/workspace/entitlement-operations/entitlements/summary?ConditionFamily=0&TermKind=0&TermUnit=0"),};using (var response = await client.SendAsync(request)){ response.EnsureSuccessStatusCode(); var body = await response.Content.ReadAsStringAsync(); Console.WriteLine(body);}const url = 'https://example.com/api/workspace/entitlement-operations/entitlements/summary?ConditionFamily=0&TermKind=0&TermUnit=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/workspace/entitlement-operations/entitlements/summary?ConditionFamily=0&TermKind=0&TermUnit=0'Authorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Optional entitlement model filter.
Optional entitlement plan filter.
Optional plan family ids that at least one current linked plan family must match.
Optional active condition family on the current linked plan.
Optional derived active term shape on the current linked plan.
Optional duration/window value paired with TermKind.
Optional duration/window unit paired with TermKind.
Optional renewal policy currently assigned to the linked plan.
Look-ahead window in days. Defaults to 30.
Remaining quantity threshold percent. Defaults to 20.
Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
object
Operational summary for the runtime entitlements page.
object
object
Compact operational counter shown on the runtime entitlements page.
object
Compact operational counter shown on the runtime entitlements page.
object
Compact operational counter shown on the runtime entitlements page.
object
Compact operational counter shown on the runtime entitlements page.
object
object
object
object
object
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}