hyperswitch icon indicating copy to clipboard operation
hyperswitch copied to clipboard

[FEAT] [CONNECTOR: NORDEA] Implement SEPA Bank Debit

Open pixincreate opened this issue 7 months ago • 2 comments

Relevant Docs

Digest and Signature creation Docs

Testing

pixincreate avatar May 25 '25 16:05 pixincreate

They deprecated Nordea SEPA Personal v4 API today morning:

Image

At present, everything in their is a chaos. In fact, SEPA endpoints are not clear. I cannot test it either.

pixincreate avatar May 25 '25 16:05 pixincreate

  • AccessToken flow: 3 step process:
    • /authorize endpoint with relevant body complaint with v5
      • code in response
    • /authorize/token endpoint with:
      • field code and grant_type set to authorization_code
        • returns access_token and refresh_token
      • field refresh_token and grant_type set to refresh_token
        • returns access_token and refresh_token
  • Payments: 2 step process
    • /sepa-credit-transfer(s) to initiate payment
    • /sepa-credit-transfer(s)/confirm to confirm the payment
  • PUT, PATCH, POST: Requires Digest (Base64 encoded Sha256 hashed request body)
  • In Sandbox environment, Signature verification can be skipped by passing SKIP_SIGNATURE_VALIDATION_FOR_SANDBOX instead

pixincreate avatar May 25 '25 16:05 pixincreate

Signing Doc: eIDAS_signing.md

pixincreate avatar Jul 18 '25 11:07 pixincreate