Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Inputs (Array[] of AutoGiroDepositOrder) inherits from EntityBase

...

NameTypeDescriptionAvailable from version
EntitiesArrayAll AutoGiroDepositOrders in the request. 2.30
MessagestringContains a message if an error occurred.2.30

...

Code Block
languagexml
themeRDark
titleXML - Example request CreateAutoGiroDepositOorders
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns:tns="http://tempuri.org/" xmlns:s1="http://microsoft.com/wsdl/types/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/">
    <soap:Body>
        <CreateAutoGiroDepositOrders xmlns="http://tempuri.org/">
            <req>
                <Credentials>
                    <UserName>[Username]</UserName>
                    <Password>[Password]</Password>
                </Credentials>
                <identify>[IdentityIdentifier]</identify>
                <Entities>
                    <AutoGiroDepositOrder>
                        <Account>[Insert guid if the Account]</Account>
                        <TransferReceiver>[Insert guid if the TransferReceiver (External Account)]</TransferReceiver>
                        <Amount>123</Amount>
                        <BusinessDate>2022-02-07T14:43:18.660Z</BusinessDate>
                        <Comment>Test</Comment>
                    </AutoGiroDepositOrder>
                </Entities>
            </req>
        </CreateAutoGiroDepositOrders>
    </soap:Body>
</soap:Envelope>

...