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

feat(api): FCON-151: Add query param destinationId to GET /submissions

parent 783fa8ab
No related branches found
No related tags found
1 merge request!90feat(api): FCON-151: submissions for pickup
...@@ -7,6 +7,8 @@ get: ...@@ -7,6 +7,8 @@ get:
security: security:
- OAuth2: - OAuth2:
- 'subscribe:destination:<id>' - 'subscribe:destination:<id>'
parameters:
- $ref: '../../parameters/destinationIdInQuery.yml'
responses: responses:
'200': '200':
description: OK description: OK
......
name: destinationId
in: query
schema:
type: string
format: uuid
minLength: 32
maxLength: 36
description: Die UUID des Zustellpunktes
...@@ -64,6 +64,8 @@ components: ...@@ -64,6 +64,8 @@ components:
$ref: './parameters/submissionId.yml' $ref: './parameters/submissionId.yml'
destinationId: destinationId:
$ref: './parameters/destinationId.yml' $ref: './parameters/destinationId.yml'
destinationIdInQuery:
$ref: './parameters/destinationIdInQuery.yml'
attachmentId: attachmentId:
$ref: './parameters/attachmentId.yml' $ref: './parameters/attachmentId.yml'
......
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