popKeyFromPolicyPool method

Future<void> popKeyFromPolicyPool(
  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.

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<void> popKeyFromPolicyPool(String account, String policy,) async {
  final response = await popKeyFromPolicyPoolWithHttpInfo(account, policy,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}