Next Matter allows you to create XML files automatically and place them in a Google Drive folder of your choice.
https://n962q5mp7c.execute-api.eu-central- 1.amazonaws.com/g/util/template_text_gdrive/PARENTIDOFGOOGLEDRIVEFOLDER/DATAREFERENCETOFILENAMEFORXML? amount=DATAREFERENCETOAMOUNT&bic=DATAREFERENCETOBIC&kunde=DATAREFERENCETOCUSTOMERNAME&iban=DATAREFERENCETOIBAN&usage=DATAREFERENCE TOVERWENDUNGSZWECK&_fileextension=xml
View XML example
<?xml version="1.0" encoding="UTF-8"?> <Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03 pain.001.001.03.xsd"> <CstmrCdtTrfInitn> <GrpHdr> <MsgId><%= format(new Date(date), "yyMMddHHmm") %></MsgId> <CreDtTm><%= format(new Date(date), "yyyy-MM-dd'T'HH:mm:ss.SSSxxx") %></CreDtTm> <NbOfTxs>1</NbOfTxs> <CtrlSum><%= amount %></CtrlSum> <InitgPty> <Nm>NAMEHARDCODE</Nm> </InitgPty> </GrpHdr> <PmtInf> <PmtInfId><%= format(new Date(date), "yyMMddHHmm") %></PmtInfId> <PmtMtd>TRF</PmtMtd> <NbOfTxs>1</NbOfTxs> <CtrlSum><%= amount %></CtrlSum> <PmtTpInf> <SvcLvl> <Cd>SEPA</Cd> </SvcLvl> </PmtTpInf> <ReqdExctnDt><%= format(new Date(date), "yyyy-MM-dd") %></ReqdExctnDt> <Dbtr> <Nm>NAMEHARDCODE</Nm> </Dbtr> <DbtrAcct> <Id> <IBAN>HARDCODESENDERIBAN</IBAN> </Id> </DbtrAcct> <DbtrAgt> <FinInstnId> <BIC>HARDCODESENDERBIC</BIC> </FinInstnId> \< /DbtrAgt> <ChrgBr>SLEV</ChrgBr> <CdtTrfTxInf> <PmtId> <EndToEndId>\<%= format(new Date(date), "yyMMddHHmm") %>-0000001</EndToEndId> </PmtId> <Amt> <InstdAmt Ccy="EUR">\<%= amount %></InstdAmt> </Amt> <CdtrAgt> <FinInstnId> <BIC>HARDCODESENDERBIC</BIC> </FinInstnId> </CdtrAgt> <Cdtr> <Nm>\<%= kunde %></Nm> </Cdtr> <CdtrAcct> <Id> <IBAN>\<%= iban %></IBAN> </Id> </CdtrAcct> <RmtInf> <Ustrd><%= usage %></Ustrd> </RmtInf> </CdtTrfTxInf> </PmtInf> </CstmrCdtTrfInitn> </Document>
Was this page helpful?