deleteProductRestEndpointPage method
Deletes a product REST endpoint page.
May throw AccessDeniedException.
May throw BadRequestException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter portalProductId :
The portal product identifier.
Parameter productRestEndpointPageId :
The product REST endpoint identifier.
Implementation
Future<void> deleteProductRestEndpointPage({
required String portalProductId,
required String productRestEndpointPageId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v2/portalproducts/${Uri.encodeComponent(portalProductId)}/productrestendpointpages/${Uri.encodeComponent(productRestEndpointPageId)}',
exceptionFnMap: _exceptionFns,
);
}