<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<char:addRecurringCharge xmlns:char="http://charge.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<recurringCharge>
<amountRecurring>388.87</amountRecurring>
<chargeOngoing>true</chargeOngoing>
<code>UTB:MISCO</code>
<custNo>554433</custNo>
<cycleInMonth>1</cycleInMonth>
<description>instalment charge</description>
<endDate>11/02/2025</endDate>
<numberOfCycle>12</numberOfCycle>
<pricePerUnit>208.18</pricePerUnit>
<prorata>true</prorata>
<quantity>1</quantity>
<serviceNo>0395551234</serviceNo>
<startDate>13/03/2024</startDate>
</recurringCharge>
</char:addRecurringCharge>
</soapenv:Body>
</soapenv:Envelope>
curl --location --request POST 'https://benzine.telcoinabox.com/tiab/UtbCharge' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data-raw '<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<char:addRecurringCharge xmlns:char="http://charge.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<recurringCharge>
<amountRecurring>388.87</amountRecurring>
<chargeOngoing>true</chargeOngoing>
<code>UTB:MISCO</code>
<custNo>554433</custNo>
<cycleInMonth>1</cycleInMonth>
<description>instalment charge</description>
<endDate>11/02/2025</endDate>
<numberOfCycle>12</numberOfCycle>
<pricePerUnit>208.18</pricePerUnit>
<prorata>true</prorata>
<quantity>1</quantity>
<serviceNo>0395551234</serviceNo>
<startDate>13/03/2024</startDate>
</recurringCharge>
</char:addRecurringCharge>
</soapenv:Body>
</soapenv:Envelope>'
<?xml version='1.0' encoding='UTF-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header />
<S:Body>
<ns2:addRecurringChargeResponse xmlns:ns2="http://charge.frontend.ws.utilibill.com.au/">
<return>
<amountRecurring>388.87</amountRecurring>
<chargeOngoing>true</chargeOngoing>
<chargeOption></chargeOption>
<code>UTB:MISCO</code>
<custNo>382700</custNo>
<cycleInMonth>1</cycleInMonth>
<description>instalment charge</description>
<endDate>11/02/2025</endDate>
<isError>false</isError>
<model></model>
<numberOfCycle>12</numberOfCycle>
<pricePerUnit>208.18</pricePerUnit>
<prorata>true</prorata>
<quantity>1</quantity>
<serviceNo>OAC000000247218</serviceNo>
<startDate>13/03/2024</startDate>
</return>
</ns2:addRecurringChargeResponse>
</S:Body>
</S:Envelope>