Skip to content
Snippets Groups Projects
Verified Commit b399896e authored by Jonas Gröger's avatar Jonas Gröger :palm_tree:
Browse files

feat: prefix all zustelldienst apis with v1

parent 55f0de03
No related branches found
No related tags found
1 merge request!116Feature: Start versioning the API (v1 for now). Example: /v1/destinations/
......@@ -18,7 +18,7 @@ Für die Spezifikation der FIT-Connect-Schnittstellen gelten die folgenden Archi
Multiple Ressourcen werden im Pfad durch eine Collection-Resource und einer nachfolgenden ID aufgenommen
Beispiel: `/submissions/{submissionId}`
Beispiel: `/v1/submissions/{submissionId}`
## Tag API version
......
......@@ -31,31 +31,31 @@ tags:
- name: Technisch
description: Unter dieser Gruppe sind alle Endpunkte organisiert, die technische Informationen über die Instanz des Zustelldienstes liefern.
paths:
/destinations:
/v1/destinations:
$ref: './endpoints/destinations/index.yaml'
/destinations/{destinationId}:
/v1/destinations/{destinationId}:
$ref: './endpoints/destinations/uuid.yaml'
/destinations/{destinationId}/keys:
/v1/destinations/{destinationId}/keys:
$ref: './endpoints/destinations/keys/index.yaml'
/destinations/{destinationId}/keys/{keyId}:
/v1/destinations/{destinationId}/keys/{keyId}:
$ref: './endpoints/destinations/keys/uuid.yaml'
/submissions:
/v1/submissions:
$ref: './endpoints/submissions/index.yaml'
/submissions/{submissionId}:
/v1/submissions/{submissionId}:
$ref: './endpoints/submissions/uuid.yaml'
/submissions/{submissionId}/events:
/v1/submissions/{submissionId}/events:
$ref: './endpoints/submissions/events/index.yaml'
/submissions/{submissionId}/attachments/{attachmentId}:
/v1/submissions/{submissionId}/attachments/{attachmentId}:
$ref: './endpoints/attachments/uuid.yaml'
/info:
/v1/info:
$ref: './endpoints/info/get-info.yaml'
/.well-known/jwks.json:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment