Lists add-on grants on the entitlement with pagination, sorting, and filtering.
const url = 'https://example.com/api/v1/provision/admin/entitlements/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/add-on-grants?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/admin/entitlements/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/add-on-grants?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.
Optional sort expression; ascending when omitted.
Optional filter expression applied to the results.
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.
An add-on grant on an entitlement as returned by the admin API, denormalized with the add-on and suite display fields.
object
The suite this add-on overlays.
Display name of that suite.
Campaign the grant was made under, when it was part of one.
True when the grant is inside its start/expiry window and not revoked.
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.
An add-on grant on an entitlement as returned by the admin API, denormalized with the add-on and suite display fields.
object
The suite this add-on overlays.
Display name of that suite.
Campaign the grant was made under, when it was part of one.
True when the grant is inside its start/expiry window and not revoked.
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", "addOnId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "addOnCode": "example", "addOnName": "example", "suiteId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "suiteName": "example", "startsAt": "2026-04-15T12:00:00Z", "expiresAt": "2026-04-15T12:00:00Z", "isRevoked": true, "revokedAt": "2026-04-15T12:00:00Z", "reference": "example", "campaignId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "isActive": 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.
An add-on grant on an entitlement as returned by the admin API, denormalized with the add-on and suite display fields.
object
The suite this add-on overlays.
Display name of that suite.
Campaign the grant was made under, when it was part of one.
True when the grant is inside its start/expiry window and not revoked.
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", "addOnId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "addOnCode": "example", "addOnName": "example", "suiteId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "suiteName": "example", "startsAt": "2026-04-15T12:00:00Z", "expiresAt": "2026-04-15T12:00:00Z", "isRevoked": true, "revokedAt": "2026-04-15T12:00:00Z", "reference": "example", "campaignId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "isActive": true } ], "totalPages": 1, "hasPreviousPage": true, "hasNextPage": true}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"}