Add a virtual IBAN
Add a virtual IBAN with the API.
Guide​
- Call the
addVirtualIbanEntry
mutation. - Enter the account ID for which you'd like to add a virtual IBAN.
- Add the success payload, including any information you'd like to review.
- Add rejections (not shown).
Mutation​
🔎 Open the mutation in API Explorer
mutation AddVirtual {
addVirtualIbanEntry(input: { accountId: "$YOUR_ACCOUNT_ID" }) {
... on AddVirtualIbanEntrySuccessPayload {
__typename
virtualIbanEntry {
IBAN
BIC
id
label
status
}
}
}
}
Payload​
The payload shows provides the virtual IBAN with the status Enabled
.
{
"data": {
"addVirtualIbanEntry": {
"__typename": "AddVirtualIbanEntrySuccessPayload",
"virtualIbanEntry": {
"IBAN": "FR7617328899000000000000000",
"BIC": "SWNBFR22",
"id": "$YOUR_VIRTUAL_IBAN_ID",
"label": "Virtual",
"status": "Enabled"
}
}
}
}