Skip to main content
GET
/
api
/
sepa-direct-debit
/
consents
Get SEPA Direct Debit consent texts
curl --request GET \
  --url https://partner-card.test.public.rockerapi.dev/api/sepa-direct-debit/consents \
  --header 'Accept-Language: <accept-language>' \
  --header 'Authorization: Basic <encoded-value>'
{
  "consentId": "550e8400-e29b-41d4-a716-446655440000",
  "language": "en",
  "texts": [
    {
      "code": "sepa_refund_disclaimer",
      "text": "This refund right is a standard SEPA protection and does not affect your obligation to repay your credit card bill. If you request a refund, your balance will still be due."
    },
    {
      "code": "sepa_legal_text",
      "text": "By authorising this mandate, you allow Bankaktiebolaget Nordiska (publ) to send instructions to your bank to debit your account in accordance with these instructions. You are entitled to a refund from your bank under the terms of your agreement. A refund must be claimed within 8 weeks from the date of debit."
    }
  ],
  "consents": [
    {
      "code": "direct_debit",
      "label": "I authorise Bankaktiebolaget Nordiska (publ) to debit my account via SEPA Direct Debit."
    },
    {
      "code": "pre_notification_waiver",
      "label": "I agree that my monthly statement will serve as advance notice for each SEPA Direct Debit payment."
    }
  ],
  "creditorInformation": {
    "companyName": "Bankaktiebolaget Nordiska (publ)",
    "address": {
      "streetLine1": "Kungsgatan 1",
      "streetLine2": "Box 1234",
      "city": "Stockholm",
      "postalCode": "12345",
      "country": "SE"
    },
    "creditorId": "SE07ZZZ5567606032"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Headers

Accept-Language
enum<string>
required

Language preference

Available options:
de,
en

Response

language
enum<string>
required

ISO 639-1 language code (de, en)

Available options:
de,
en
creditorInformation
HttpCreditorInformation · object
required
texts
HttpSepaText · object[]
consents
HttpSepaConsent · object[]