Lists the monitored assets (metered quotas and prepaid balances) attached to an entitlement the current user can access — the me-scoped counterpart of the admin by-entitlement listing, so the end-user license portal can surface its own balances without an admin credential.
const url = 'https://example.com/api/v1/provision/consumer/me/entitlements/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/monitored-assets?pageNumber=1&pageSize=100';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/v1/provision/consumer/me/entitlements/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/monitored-assets?pageNumber=1&pageSize=100'Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Entitlement id.
Query Parameters
Section titled “Query Parameters”1-based page number to return.
Maximum number of items per page.
Responses
Section titled “Responses”OK
Serializable IPaginatedList<T> implementation used to deserialize paged API responses. int PaginatedListDto<T>.TotalPages, bool PaginatedListDto<T>.HasPreviousPage, and bool PaginatedListDto<T>.HasNextPage are computed from the other properties.
object
The 1-based index of this page within the full result set.
The maximum number of items per page that was requested.
The total number of items across all pages.
The items on this page.
A metered or credit-backed asset on an entitlement the calling user holds: what it measures, where consumption currently stands, and what remains.
object
The name consumption is reported under.
Display name, when the asset carries one distinct from its metric name.
What the value counts — seconds, renders, miles.
Format hint for rendering decimal MyMonitoredAssetDto.CurrentValue, e.g. "0.00".
Consumption recorded so far, on the asset’s own counter.
Consumption in the period the quota is measured over, or null when the asset carries no metered quota — a credit-backed asset measures a balance rather than a period.
Where the current period’s quota runs out, or null when there is no metered quota. The figure to compare double? MyMonitoredAssetDto.CurrentPeriodUsage against.
The period the quota resets on, e.g. "Monthly". Empty when the asset has no metered
quota.
Severity of consumption relative to the quota, as a stable name: None, Normal,
Warning, Critical or OverUsage. A string rather than the admin enum so a
consumer app does not take a dependency on the admin DTO package to read its own status.
When consumption is suspended until, or null when it is not. An app that shows the user why a feature stopped working needs this; it is the one operator decision that reaches them.
The credit balance backing this asset, or null when it is not credit-backed.
object
What the credits are counted in.
Credits granted in total.
Credits consumed since the last deposit.
What is left: double MyCreditBalanceDto.TotalCredits minus double MyCreditBalanceDto.CreditsUsed.
True when the balance is not drawn down by consumption at all.
The total number of pages, computed from int PaginatedListDto<T>.TotalCount and int PaginatedListDto<T>.PageSize; 0 when int PaginatedListDto<T>.PageSize is not positive.
Whether a page precedes this one (int PaginatedListDto<T>.PageNumber is greater than 1).
Whether a page follows this one (int PaginatedListDto<T>.PageNumber is less than int PaginatedListDto<T>.TotalPages).
Serializable IPaginatedList<T> implementation used to deserialize paged API responses. int PaginatedListDto<T>.TotalPages, bool PaginatedListDto<T>.HasPreviousPage, and bool PaginatedListDto<T>.HasNextPage are computed from the other properties.
object
The 1-based index of this page within the full result set.
The maximum number of items per page that was requested.
The total number of items across all pages.
The items on this page.
A metered or credit-backed asset on an entitlement the calling user holds: what it measures, where consumption currently stands, and what remains.
object
The name consumption is reported under.
Display name, when the asset carries one distinct from its metric name.
What the value counts — seconds, renders, miles.
Format hint for rendering decimal MyMonitoredAssetDto.CurrentValue, e.g. "0.00".
Consumption recorded so far, on the asset’s own counter.
Consumption in the period the quota is measured over, or null when the asset carries no metered quota — a credit-backed asset measures a balance rather than a period.
Where the current period’s quota runs out, or null when there is no metered quota. The figure to compare double? MyMonitoredAssetDto.CurrentPeriodUsage against.
The period the quota resets on, e.g. "Monthly". Empty when the asset has no metered
quota.
Severity of consumption relative to the quota, as a stable name: None, Normal,
Warning, Critical or OverUsage. A string rather than the admin enum so a
consumer app does not take a dependency on the admin DTO package to read its own status.
When consumption is suspended until, or null when it is not. An app that shows the user why a feature stopped working needs this; it is the one operator decision that reaches them.
The credit balance backing this asset, or null when it is not credit-backed.
object
What the credits are counted in.
Credits granted in total.
Credits consumed since the last deposit.
What is left: double MyCreditBalanceDto.TotalCredits minus double MyCreditBalanceDto.CreditsUsed.
True when the balance is not drawn down by consumption at all.
The total number of pages, computed from int PaginatedListDto<T>.TotalCount and int PaginatedListDto<T>.PageSize; 0 when int PaginatedListDto<T>.PageSize is not positive.
Whether a page precedes this one (int PaginatedListDto<T>.PageNumber is greater than 1).
Whether a page follows this one (int PaginatedListDto<T>.PageNumber is less than int PaginatedListDto<T>.TotalPages).
Examplegenerated
{ "pageNumber": 1, "pageSize": 1, "totalCount": 1, "items": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "metricName": "example", "name": "example", "unit": "example", "numberFormat": "example", "currentValue": 1, "currentPeriodUsage": 1, "periodLimit": 1, "consumptionPeriod": "example", "overageStatus": "example", "suspendedUntilAt": "2026-04-15T12:00:00Z", "balance": { "name": "example", "unit": "example", "numberFormat": "example", "totalCredits": 1, "creditsUsed": 1, "creditsLeft": 1, "isUnlimitedCredits": true } } ], "totalPages": 1, "hasPreviousPage": true, "hasNextPage": true}Serializable IPaginatedList<T> implementation used to deserialize paged API responses. int PaginatedListDto<T>.TotalPages, bool PaginatedListDto<T>.HasPreviousPage, and bool PaginatedListDto<T>.HasNextPage are computed from the other properties.
object
The 1-based index of this page within the full result set.
The maximum number of items per page that was requested.
The total number of items across all pages.
The items on this page.
A metered or credit-backed asset on an entitlement the calling user holds: what it measures, where consumption currently stands, and what remains.
object
The name consumption is reported under.
Display name, when the asset carries one distinct from its metric name.
What the value counts — seconds, renders, miles.
Format hint for rendering decimal MyMonitoredAssetDto.CurrentValue, e.g. "0.00".
Consumption recorded so far, on the asset’s own counter.
Consumption in the period the quota is measured over, or null when the asset carries no metered quota — a credit-backed asset measures a balance rather than a period.
Where the current period’s quota runs out, or null when there is no metered quota. The figure to compare double? MyMonitoredAssetDto.CurrentPeriodUsage against.
The period the quota resets on, e.g. "Monthly". Empty when the asset has no metered
quota.
Severity of consumption relative to the quota, as a stable name: None, Normal,
Warning, Critical or OverUsage. A string rather than the admin enum so a
consumer app does not take a dependency on the admin DTO package to read its own status.
When consumption is suspended until, or null when it is not. An app that shows the user why a feature stopped working needs this; it is the one operator decision that reaches them.
The credit balance backing this asset, or null when it is not credit-backed.
object
What the credits are counted in.
Credits granted in total.
Credits consumed since the last deposit.
What is left: double MyCreditBalanceDto.TotalCredits minus double MyCreditBalanceDto.CreditsUsed.
True when the balance is not drawn down by consumption at all.
The total number of pages, computed from int PaginatedListDto<T>.TotalCount and int PaginatedListDto<T>.PageSize; 0 when int PaginatedListDto<T>.PageSize is not positive.
Whether a page precedes this one (int PaginatedListDto<T>.PageNumber is greater than 1).
Whether a page follows this one (int PaginatedListDto<T>.PageNumber is less than int PaginatedListDto<T>.TotalPages).
Examplegenerated
{ "pageNumber": 1, "pageSize": 1, "totalCount": 1, "items": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "metricName": "example", "name": "example", "unit": "example", "numberFormat": "example", "currentValue": 1, "currentPeriodUsage": 1, "periodLimit": 1, "consumptionPeriod": "example", "overageStatus": "example", "suspendedUntilAt": "2026-04-15T12:00:00Z", "balance": { "name": "example", "unit": "example", "numberFormat": "example", "totalCredits": 1, "creditsUsed": 1, "creditsLeft": 1, "isUnlimitedCredits": true } } ], "totalPages": 1, "hasPreviousPage": true, "hasNextPage": true}Unauthorized
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}Forbidden
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}Not Found
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}