listPolicyEntitlementsWithHttpInfo method

Future<Response> listPolicyEntitlementsWithHttpInfo(
  1. String account,
  2. String policy, {
  3. Object? page,
  4. int? limit,
})

List policy entitlements

Returns a list of entitlements attached to the policy. The entitlements are returned sorted by creation date, with the most recent entitlements appearing first.

Note: This method returns the HTTP Response.

Parameters:

  • String account (required): The identifier (UUID) or slug of your Keygen account.

  • String policy (required): The identifier (UUID) of the policy to list entitlements for.

  • Object page: Object containing page size and page number.

  • int limit:

Implementation

Future<Response> listPolicyEntitlementsWithHttpInfo(String account, String policy, { Object? page, int? limit, }) async {
  // ignore: prefer_const_declarations
  final path = r'/accounts/{account}/policies/{policy}/entitlements'
    .replaceAll('{account}', account)
    .replaceAll('{policy}', policy);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  if (page != null) {
    queryParams.addAll(_queryParams('', 'page', page));
  }
  if (limit != null) {
    queryParams.addAll(_queryParams('', 'limit', limit));
  }

  const contentTypes = <String>[];


  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}