The response that is obtained once the request has been made has a 'status' code that can assume the values of OK or KO depending on the outcome of the answer.

The field 'service code' contains the identification of the reference service, the field 'payment date' contains the date of the payment and the field 'amount value' contains the amount of the payment

an example below:

<?xml version="1.0" encoding="UTF-8"?>
<envelope>
    <header>
    <actor>test</actor>
        <user>test</user>
        <password>test</password>
        <version>1.0.0</version>
        <timestamp>20200501170000</timestamp>
    </header>
    <query type="payment" product="paymentmanager" />
        <payment>
            <status code="OK" />
            <service code="B0221BJGAM" />
            <payment date="2021-02-11" />
            <amount value="5" />
        </payment>
    </query>