Neue API-Version v7.4.2 wurde veröffentlicht! 🎉
REST Dokumentation
GET Abteilungsmitarbeiter

Abteilungs-Mitarbeiter

Request

GET /api/v1/departments/:id/employees
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/departments/1/employees' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": [
		{
			"username": "max.mustermann",
			"firstname": "Max",
			"lastname": "Mustermann",
			"personal_number": "003",
			"street": "Musterstraße 30",
			"zip": "71254",
			"city": "Ditzingen",
			"country": null,
			"abbreviation": "MM",
			"salutation": {
				"id": "Herr",
				"name": "Herr"
			},
			"title": null,
			"email": "max.mustermann@firma.de",
			"phone": "07156 43623-17",
			"mobile": null,
			"fax": "07156 330938",
			"private_phone": "07156 33958",
			"birthdate": "1985-08-17T00:00:00.000000Z",
			"iban": null,
			"bic": null,
			"account_no": null,
			"bank_name": null,
			"bank_code": null,
			"currency": null,
			"approval_date": null,
			"vat": null,
			"price_group": "Senior-Entwickler",
			"employment": {
				"id": 0,
				"name": "Mitarbeiter/in"
			},
			"rights": {
				"id": 1,
				"name": "Administrator"
			},
			"department_id": 1,
			"language": null,
			"personio_id": null,
			"cost_bearer": null,
			"tax_id": null,
			"created": null,
			"modified": "2025-05-06T18:06:25.000000Z",
			"creditor_number": null
		},
		{
			"username": "anna.schmidt",
			"firstname": "Anna",
			"lastname": "Schmidt",
			"personal_number": "033",
			"street": "Gutenbergstraße 65",
			"zip": "70176",
			"city": "Stuttgart",
			"country": null,
			"abbreviation": "AS",
			"salutation": {
				"id": "Frau",
				"name": "Frau"
			},
			"title": null,
			"email": "anna.schmidt@firma.de",
			"phone": null,
			"mobile": null,
			"fax": null,
			"private_phone": null,
			"birthdate": "1987-11-22T00:00:00.000000Z",
			"iban": null,
			"bic": null,
			"account_no": null,
			"bank_name": null,
			"bank_code": null,
			"currency": null,
			"approval_date": null,
			"vat": null,
			"price_group": "Junior-Entwickler",
			"employment": {
				"id": 0,
				"name": "Mitarbeiter/in"
			},
			"rights": {
				"id": 3,
				"name": "Benutzer mit zusätzlichen Berechtigungen"
			},
			"department_id": 1,
			"language": {
				"locale": "de",
				"isoCode": "de",
				"name": "deutsch",
				"dateFormat": "d.m.Y",
				"dateTimeFormat": "d.m.Y H:i",
				"numberFormat": {
					"decimalSeparator": ",",
					"thousandsSeparator": "."
				}
			},
			"personio_id": null,
			"cost_bearer": null,
			"tax_id": null,
			"created": "2022-06-29T14:51:57.000000Z",
			"modified": "2025-05-06T18:06:25.000000Z",
			"creditor_number": "80033"
		}
	]
}