Skip to main content

Update SEPA Direct Debit payment method

Update the SEPA Creditor Identifier (SCI) for the SEPA Direct Debit merchant payment method with the API.

Guide​

  1. Call the requestMerchantPaymentMethodsUpdate mutation.
  2. Enter the paymentMethodId for the merchant's SEPA Direct Debit payment method.
  3. Enter the merchant's sepaCreditorIdentifier.
  4. Set useSwanSepaCreditorIdentifier to false.
  5. Add the RequestMerchantPaymentMethodsUpdateSuccessPayload success payload.
  6. 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
}
}
}