Audience:
Developers
Cancel a virtual IBAN
Cancel a virtual IBAN with the API. Canceling a virtual IBAN is permanent; canceled virtual IBANs can't be reactivated.
Your users can also cancel their own virtual IBANs in Web Banking; there's no partner Dashboard action for cancelation.
Guide
- Call the
cancelVirtualIbanEntrymutation. - Enter the ID for the virtual IBAN you'd like to cancel (
virtualIbanEntryId). - Add the success payload, including any information you'd like to review.
- Add rejections (not shown).
Mutation
Open in API Explorermutation CancelVirtual {
cancelVirtualIbanEntry(
input: { virtualIbanEntryId: "$YOUR_VIRTUAL_IBAN_ID" }
) {
... on CancelVirtualIbanEntrySuccessPayload {
__typename
virtualIbanEntry {
BIC
id
blockSDD
label
status
IBAN
}
}
}
}
Payload
The payload shows the IBAN status changed to Canceled.
{
"data": {
"cancelVirtualIbanEntry": {
"__typename": "CancelVirtualIbanEntrySuccessPayload",
"virtualIbanEntry": {
"BIC": "SWNBFR22",
"id": "$YOUR_VIRTUAL_IBAN_ID",
"blockSDD": false,
"label": "Virtual",
"status": "Canceled",
"IBAN": "FR7617328899000000000000000"
}
}
}
}