Audience:
Developers
Get a funding transaction release date
Retrieve the day and time a funding transaction's reserved amount is scheduled to be released, with the transaction query.
Review the rolling reserve concept for why an amount is reserved.
Guide
- Call the
transactionquery. - Add your transaction ID.
- Add the
SEPADirectDebitTransactionunion. - Add
reservedAmountReleasedAtand any other information that's interesting to you.
Query
Open in API Explorerquery GetReleaseDate {
transaction(id: "$TRANSACTION_ID") {
... on SEPADirectDebitTransaction {
id
reservedAmount {
currency
value
}
reservedAmountReleasedAt
}
}
}
Payload
The payload returns reservedAmountReleasedAt, the day and time the reserved amount of the account funding transaction is scheduled to be released.
{
"data": {
"transaction": {
"__typename": "SEPADirectDebitTransaction",
"id": "$TRANSACTION_ID",
"reservedAmount": {
"currency": "EUR",
"value": "15.00"
},
"reservedAmountReleasedAt": "2025-03-11T19:00:00.000Z"
}
}
}