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

[PAPI-1933] Add options field to employee list attributes endpoint #194

Merged
merged 1 commit into from
Jul 30, 2024
Merged
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
21 changes: 21 additions & 0 deletions personio-personnel-data-api-oa3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -862,14 +862,35 @@ paths:
label: First Name
type: standard
universal_id: first_name
options: []
- key: last_name
label: Last Name
type: standard
universal_id: last_name
options: []
- key: dynamic_1
label: IBAN
type: standard
universal_id: iban
options: []
- key: dynamic_2
label: Marital status
type: list
universal_id: null
options: [
"married",
"single",
]
- key: dynamic_3
label: Language Skills
type: tags
universal_id: null
options: [
"English",
"French",
"Spanish",
"German"
]

/company/employees/{employee_id}/profile-picture/{width}:
parameters:
Expand Down