Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAPI change encodedHash to encodedRefNr due to upstream change #48

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,18 +258,18 @@ paths:
example: 25
required: false

/pc/v2/jobdetails/{encodedHashID}:
/pc/v2/jobdetails/{encodedRefNr}:
get:
summary: Jobdetail
description: "Abrufen von Details zu einem Job."
parameters:
- name: encodedHashID
- name: encodedRefNr
in: path
required: true
schema:
type: string
example: VK2qoXBe0s-UAdH_qxLDRrZrY5iY8a1PJt3MjJCXsdo=
description: Hash-ID eines Jobs (siehe JobSearchResponse), enkodiert mit Base64
example: MTIyNjUtMzM4MTI3X0pCNDA4NjkzMy1T
description: refnr (z.B. 12265-338127_JB4086933-S siehe JobSearchResponse), enkodiert mit Base64 (z.B. MTIyNjUtMzM4MTI3X0pCNDA4NjkzMy1T).
responses:
'200':
description: OK
Expand Down