Skip to main content
GET
/
api
/
v2
/
employees
cURL
curl --request GET \
  --url https://api.become1.de/api/v2/employees \
  --header 'Authorization: Bearer <token>'
[
  {
    "email": "<string>",
    "employeeId": "<string>",
    "companyId": "<string>",
    "personnelNumber": "<string>",
    "costCenter": "<string>",
    "groups": [
      "<string>"
    ],
    "datePausedStart": "2023-11-07T05:31:56Z",
    "datePausedEnd": "2023-11-07T05:31:56Z",
    "dateTerminated": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
email
string
required
employeeId
string
required
companyId
string
required
personnelNumber
string
required
costCenter
string | null
groups
string[] | null
datePausedStart
string<date-time> | null
datePausedEnd
string<date-time> | null
dateTerminated
string<date-time> | null