GET
/
v2.01
/
{ClientId}
/
deposit-preauthorizations
/
{DepositId}
/
transactions
[
    {
        "Id": "1d703749-8b07-4d82-8473-528e9b0322cc",
        "Tag": "Created using Mangopay API Postman Collection",
        "CreationDate": 1721742582,
        "AuthorId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "CreditedUserId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "DebitedFunds": {
            "Currency": "EUR",
            "Amount": 20000
        },
        "CreditedFunds": {
            "Currency": "EUR",
            "Amount": 19000
        },
        "Fees": {
            "Currency": "EUR",
            "Amount": 1000
        },
        "Status": "SUCCEEDED",
        "ResultCode": "000000",
        "ResultMessage": "Success",
        "ExecutionDate": 1721742583,
        "Type": "PAYIN",
        "Nature": "REGULAR",
        "CreditedWalletId": "wlt_m_01J18J1SQGG6KXNM3F8GD674TP",
        "DebitedWalletId": null,
        "DepositId": "deposit_m_01J3FXN0PAAYJCYMWMM8DRGY5A"
    },
    {
        "Id": "05cb5843-1207-4382-aa04-25b5dc994847",
        "Tag": "Created using the Mangopay API Collection postman",
        "CreationDate": 1721742590,
        "AuthorId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "CreditedUserId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "DebitedFunds": {
            "Currency": "EUR",
            "Amount": 10000
        },
        "CreditedFunds": {
            "Currency": "EUR",
            "Amount": 9000
        },
        "Fees": {
            "Currency": "EUR",
            "Amount": 1000
        },
        "Status": "SUCCEEDED",
        "ResultCode": "000000",
        "ResultMessage": "Success",
        "ExecutionDate": 1721742591,
        "Type": "PAYIN",
        "Nature": "REGULAR",
        "CreditedWalletId": "wlt_m_01J18J1SQGG6KXNM3F8GD674TP",
        "DebitedWalletId": null,
        "DepositId": "deposit_m_01J3FXN0PAAYJCYMWMM8DRGY5A"
    }
]
This call returns all preauthorized pay-ins, both captures and complements, made against a given 30-day preauthorization, whether they were successful or not.

Path parameters

DepositId
string
required
The unique identifier of the deposit preauthorization.

Query parameters

Status
string
Allowed values: CREATED, SUCCEEDED, FAILEDThe status of the transaction. You can filter on multiple values by separating them with a comma.
ResultCode
string
The code indicating the result of the operation. You can filter on multiple values by separating them with a comma.
BeforeDate
Unix timestamp
The date before which the transaction was created (based on the transaction’s CreationDate parameter). You can filter on a specific time range by using both the AfterDate and BeforeDate query parameters.
AfterDate
Unix timestamp
The date after which the transaction was created (based on the transaction’s CreationDate parameter). You can filter on a specific time range by using both the AfterDate and BeforeDate query parameters.

Responses

[
    {
        "Id": "1d703749-8b07-4d82-8473-528e9b0322cc",
        "Tag": "Created using Mangopay API Postman Collection",
        "CreationDate": 1721742582,
        "AuthorId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "CreditedUserId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "DebitedFunds": {
            "Currency": "EUR",
            "Amount": 20000
        },
        "CreditedFunds": {
            "Currency": "EUR",
            "Amount": 19000
        },
        "Fees": {
            "Currency": "EUR",
            "Amount": 1000
        },
        "Status": "SUCCEEDED",
        "ResultCode": "000000",
        "ResultMessage": "Success",
        "ExecutionDate": 1721742583,
        "Type": "PAYIN",
        "Nature": "REGULAR",
        "CreditedWalletId": "wlt_m_01J18J1SQGG6KXNM3F8GD674TP",
        "DebitedWalletId": null,
        "DepositId": "deposit_m_01J3FXN0PAAYJCYMWMM8DRGY5A"
    },
    {
        "Id": "05cb5843-1207-4382-aa04-25b5dc994847",
        "Tag": "Created using the Mangopay API Collection postman",
        "CreationDate": 1721742590,
        "AuthorId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "CreditedUserId": "user_m_01J18HZSACR1EMYNY1TBS8KTJD",
        "DebitedFunds": {
            "Currency": "EUR",
            "Amount": 10000
        },
        "CreditedFunds": {
            "Currency": "EUR",
            "Amount": 9000
        },
        "Fees": {
            "Currency": "EUR",
            "Amount": 1000
        },
        "Status": "SUCCEEDED",
        "ResultCode": "000000",
        "ResultMessage": "Success",
        "ExecutionDate": 1721742591,
        "Type": "PAYIN",
        "Nature": "REGULAR",
        "CreditedWalletId": "wlt_m_01J18J1SQGG6KXNM3F8GD674TP",
        "DebitedWalletId": null,
        "DepositId": "deposit_m_01J3FXN0PAAYJCYMWMM8DRGY5A"
    }
]