Update SEPA Direct Debit payment method
Update the SEPA Creditor Identifier (SCI) for the SEPA Direct Debit merchant payment method with the API.
Guide​
- Call the
requestMerchantPaymentMethodsUpdate
mutation. - Enter the
paymentMethodId
for the merchant's SEPA Direct Debit payment method. - Enter the merchant's
sepaCreditorIdentifier
. - Set
useSwanSepaCreditorIdentifier
tofalse
. - Add the
RequestMerchantPaymentMethodsUpdateSuccessPayload
success payload. - Add rejections (not shown).
Mutation​
🔎 Open the mutation in API Explorer
mutation UpdateSci {
requestMerchantPaymentMethodsUpdate(
input: {
paymentMethodId: "$PAYMENT_METHOD_ID"
sepaDirectDebit: {
sepaCreditorIdentifier: "$NEW_SCI"
useSwanSepaCreditorIdentifier: false
}
}
) {
... on RequestMerchantPaymentMethodsUpdateSuccessPayload {
__typename
paymentMethodId
requestId
}
}
}