Using this API call we can remove the address from the whitelisting.
import'dotenv/config';import { Paymaster } from'@kanalabs/mirai';(async () => {// Define the accountAddress, chainId and apiKeyconstaccountAddress='0xf141413684395e0174f14ab8fe2414106f79f2f9';constchainId=80001;constapiKey=process.env.PAYMASTER_API_KEY||''// initializating Paymaster service using the apiKey...constpaymasterService=newPaymaster(apiKey);// remove a whitelist using the specified accountAddress and chainIdconstresponse=awaitpaymasterService.removeWhitelist(accountAddress, chainId);// Log the remove whitelist responseconsole.log('response', response);})()