popKeyFromPolicyPoolWithHttpInfo method

Future<Response> popKeyFromPolicyPoolWithHttpInfo(
  1. String account,
  2. String policy
)

Pop key from pool

Pop off (delete) a key from the policy's pool of pre-determined keys. The returned key is only available directly after a pop, similar to authentication tokens. This cannot be undone.

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 be retrieved.

Implementation

Future<Response> popKeyFromPolicyPoolWithHttpInfo(String account, String policy,) async {
  // ignore: prefer_const_declarations
  final path = r'/accounts/{account}/policies/{policy}/pool'
    .replaceAll('{account}', account)
    .replaceAll('{policy}', policy);

  // ignore: prefer_final_locals
  Object? postBody;

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

  const contentTypes = <String>[];


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