deleteApiKey method
Deletes an API key.
May throw BadRequestException.
May throw InternalFailureException.
May throw NotFoundException.
May throw UnauthorizedException.
Parameter apiId :
The API ID.
Parameter id :
The ID for the API key.
Implementation
Future<void> deleteApiKey({
required String apiId,
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v1/apis/${Uri.encodeComponent(apiId)}/apikeys/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
}