{% extends "base.html" %} {% block title %} — Step {{ step }}{% endblock %} {% block stepper %}
{% set step_names = ["Auth", "Opret Bruger", "Tilslut Bank", "Konti", "Transaktioner", "Events"] %} {% for i in range(1, 7) %} {{ i }} {{ step_names[i-1] }} {% if i < 6 %} {% endif %} {% endfor %}
{% endblock %} {% block content %}
{{ step }}

{{ title }}

{{ subtitle }}

Endpoint {{ api_version }}
{{ endpoint }}

{{ description }}

cURL eksempel
{{ curl_example }}
{% if prev_step %} ← Step {{ prev_step }} {% endif %} {% if next_step %} Step {{ next_step }} → {% endif %}
{% if tink_link_url %} {% if cb_success %}

Bank forbundet!

User token gemt i session. Trin 4–6 er klar.

Start forfra
{% else %}

Tilslut testbank

Klik knappen, vælg Demo Bank og log ind — du redirectes automatisk tilbage.

Trin i Tink Link

  1. Vælg Tink Demo Bank
  2. Vælg Open BankingPassword And OTP
  3. Hent credentials: Console → Demo Bank → Transactions → DK
  4. Indtast username + password → OTP vises på siden → Continue
  5. Vælg en konto → du redirectes automatisk tilbage her ✓
Alternativ: manuel kode-indsætning via console.tink.com
{% endif %}{# end not cb_success #} {% endif %}{# end tink_link_url #} {% if error %}

Fejl

{{ error }}
{% endif %} {% if result %}
Response 200 OK {% if is_demo %} ⚠ Sample Data {% endif %}
{{ result | tojson(indent=2) }}
{% elif not error %}

Klik på knappen ovenfor for at køre dette API-kald og se svaret her.

{% endif %}
{% endblock %}