> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nordiska.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get SEPA Direct Debit consent texts

> Get SEPA Direct Debit consent texts



## OpenAPI

````yaml https://partner-card.test.public.rockerapi.dev/docs/docs.yaml get /api/sepa-direct-debit/consents
openapi: 3.1.0
info:
  title: Card
  version: '1.0'
servers:
  - url: https://partner-card.test.public.rockerapi.dev
security: []
paths:
  /api/sepa-direct-debit/consents:
    get:
      tags:
        - SEPA
      summary: Get SEPA Direct Debit consent texts
      description: Get SEPA Direct Debit consent texts
      operationId: Get SEPA Direct Debit consent texts
      parameters:
        - name: Accept-Language
          in: header
          description: Language preference
          required: true
          schema:
            $ref: '#/components/schemas/HttpLanguage'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpSepaDirectDebitTextsResponse'
              examples:
                SEPA_DIRECT_DEBIT_CONSENT_TEXTS_EN:
                  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
                SEPA_DIRECT_DEBIT_CONSENT_TEXTS_DE:
                  value:
                    consentId: 550e8400-e29b-41d4-a716-446655440001
                    language: de
                    texts:
                      - code: sepa_refund_disclaimer
                        text: >-
                          Dieses Erstattungsrecht ist ein Standard-SEPA-Schutz
                          und berührt nicht Ihre Verpflichtung zur Rückzahlung
                          Ihrer Kreditkartenrechnung. Wenn Sie eine Erstattung
                          beantragen, bleibt Ihr Saldo weiterhin fällig.
                      - code: sepa_legal_text
                        text: >-
                          Durch die Autorisierung dieses Mandats ermächtigen Sie
                          die Bankaktiebolaget Nordiska (publ), Ihrer Bank
                          Anweisungen zu senden, Ihr Konto gemäß diesen
                          Anweisungen zu belasten. Sie haben Anspruch auf eine
                          Erstattung von Ihrer Bank unter den Bedingungen Ihrer
                          Vereinbarung. Eine Erstattung muss innerhalb von 8
                          Wochen ab dem Belastungsdatum beantragt werden.
                    consents:
                      - code: direct_debit
                        label: >-
                          Ich ermächtige die Bankaktiebolaget Nordiska (publ),
                          mein Konto per SEPA-Lastschrift zu belasten.
                      - code: pre_notification_waiver
                        label: >-
                          Ich stimme zu, dass mein monatlicher Kontoauszug als
                          Voranmeldung für jede SEPA-Lastschriftzahlung dient.
                    creditorInformation:
                      companyName: Bankaktiebolaget Nordiska (publ)
                      address:
                        streetLine1: Kungsgatan 1
                        streetLine2: Box 1234
                        city: Stockholm
                        postalCode: '12345'
                        country: SE
                      creditorId: SE07ZZZ5567606032
        '400':
          description: 'Invalid value for: header Accept-Language'
          content:
            text/plain:
              schema:
                type: string
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorBodyResponse'
      security:
        - httpAuth: []
components:
  schemas:
    HttpLanguage:
      title: HttpLanguage
      type: string
      enum:
        - de
        - en
    HttpSepaDirectDebitTextsResponse:
      title: HttpSepaDirectDebitTextsResponse
      type: object
      required:
        - consentId
        - language
        - creditorInformation
      properties:
        consentId:
          type: string
          format: uuid
        language:
          $ref: '#/components/schemas/HttpLanguage'
          description: ISO 639-1 language code (de, en)
        texts:
          type: array
          items:
            $ref: '#/components/schemas/HttpSepaText'
        consents:
          type: array
          items:
            $ref: '#/components/schemas/HttpSepaConsent'
        creditorInformation:
          $ref: '#/components/schemas/HttpCreditorInformation'
    HttpErrorBodyResponse:
      title: HttpErrorBodyResponse
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: string
        message:
          type: string
    HttpSepaText:
      title: HttpSepaText
      type: object
      required:
        - code
        - text
      properties:
        code:
          $ref: '#/components/schemas/HttpSepaTextCode'
        text:
          type: string
    HttpSepaConsent:
      title: HttpSepaConsent
      type: object
      required:
        - code
        - label
      properties:
        code:
          $ref: '#/components/schemas/HttpSepaConsentCode'
        label:
          type: string
    HttpCreditorInformation:
      title: HttpCreditorInformation
      type: object
      required:
        - companyName
        - address
        - creditorId
      properties:
        companyName:
          type: string
        address:
          $ref: '#/components/schemas/HttpCreditorAddress'
        creditorId:
          type: string
    HttpSepaTextCode:
      title: HttpSepaTextCode
      type: string
      enum:
        - sepa_refund_disclaimer
        - sepa_legal_text
    HttpSepaConsentCode:
      title: HttpSepaConsentCode
      type: string
      enum:
        - direct_debit
        - pre_notification_waiver
    HttpCreditorAddress:
      title: HttpCreditorAddress
      type: object
      required:
        - streetLine1
        - streetLine2
        - city
        - postalCode
        - country
      properties:
        streetLine1:
          type: string
        streetLine2:
          type: string
        city:
          type: string
        postalCode:
          type: string
        country:
          description: ISO 3166-1 alpha-2 country code
          type: string
  securitySchemes:
    httpAuth:
      type: http
      scheme: basic

````