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
requestMerchantPaymentMethodsUpdatemutation. - Enter the
paymentMethodIdfor the merchant's SEPA Direct Debit payment method. - Enter the merchant's
sepaCreditorIdentifier. - Set
useSwanSepaCreditorIdentifiertofalse. - Add the
RequestMerchantPaymentMethodsUpdateSuccessPayloadsuccess 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
}
}
}