Skip to main content

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

  1. Call the transaction query.
  2. Add your transaction ID.
  3. Add the SEPADirectDebitTransaction union.
  4. Add reservedAmountReleasedAt and any other information that's interesting to you.

Query

Open in API Explorer
query 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"
}
}
}