const response = await fetch('https://pre-api-test.cmfbl.com/openapi-b/fund.admin.CustomerAdjustProposalAdminDubboService.addCustomerAdjustProposal', {
method: 'POST',
headers: {
"token": "text",
"version": "text",
"trace": "text",
"Content-Type": "application/json"
},
body: JSON.stringify("{\r\n \"customerNo\": \"{{customerNo}}\",\r\n \"accountId\": {{accountId}},\r\n \"accountCurrency\": \"USDT\",\r\n \"tradeType\": 1,\r\n \"businessType\": 4,\r\n \"amount\": 5,\r\n \"withdraw\": true,\r\n \"remark\": \"test\"\r\n}"),
});
const data = await response.json();