Disable a membership
You might need to disable an account member from accessing the account. Disabling a membership doesn't require consent.
Note that you can also suspend account memberships and resume access for suspended account memberships. Learn more in the guide to suspend and resume account memberships.
You can't disable the legal representative's account membership. If needed, change the account's legal representative before disabling the membership.
Your users can disable account memberships from Swan's Web Banking interface.
Guide​
- Call the
disableAccountMembershipmutation. - Add the account membership ID.
- Add the success payload with the status.
- Add any rejections you'd like.
Mutation​
Open in API Explorermutation DisableMembership {
disableAccountMembership(
input: { accountMembershipId: "$ACCOUNT_MEMBERSHIP_ID" }
) {
... on DisableAccountMembershipSuccessPayload {
__typename
accountMembership {
statusInfo {
status
}
updatedAt
}
}
}
}
Payload​
The payload shows that the account membership is Disabled.
{
"data": {
"disableAccountMembership": {
"__typename": "DisableAccountMembershipSuccessPayload",
"accountMembership": {
"statusInfo": {
"status": "Disabled"
},
"updatedAt": "2023-06-01T12:59:12.763Z"
}
}
}
}
When you disable an account member, any recurring single-use virtual cards associated with that member are automatically reassigned to the account's legal representative. The legal representative can reassign the cards to another active member.
The cards remain active to prevent disruption of ongoing expenses or subscriptions. This automatic reassignment ensures business continuity while maintaining proper account control.