Employees

Operations for Employees

List employees

get

List employees

Filter Syntax:

  • Filters use exact match only

  • Multiple filters are combined with AND logic

  • Filterable fields: employeeNumber

  • Example: ?employeeNumber=example-value

Authorizations
Query parameters
employeeNumberstringOptional

Filter by employeeNumber (exact match)

limitinteger · min: 1 · max: 1000Optional

Maximum number of items to return (1-1000)

Default: 10
cursorstringOptional

Cursor for pagination. Use the value from the 'nextCursor' field of the previous response.

Responses
200

Successful response

application/json
get
/employees

Get Employee

get

Get a single Employee by ID

Authorizations
Path parameters
idstringRequired

Employee ID

Responses
200

Successful response

application/json
get
/employees/{id}

Upload document for Employee

post

Upload a binary document that will be attached to the specified resource via a proposal.

Authorizations
Path parameters
idstringRequired

Employee ID

Body
filestring · binaryRequired
Responses
post
/employees/{id}/uploadDocument

No content

List documents for Employee

get

List documents for the Employee resource

Authorizations
Path parameters
idstringRequired

Employee ID

Responses
200

Successful response

application/json
get
/employees/{id}/documents

List Employee creation proposals

get

List all createEmployees proposals. These are proposed changes to create new Employee records that may be automatically approved or require manual approval depending on system configuration.

Filter Syntax:

  • Filters use exact match only

  • Multiple filters are combined with AND logic

  • Filterable fields: employeeNumber

  • Example: ?employeeNumber=example-value

Authorizations
Query parameters
employeeNumberstringOptional

Filter by employeeNumber (exact match)

limitinteger · min: 1 · max: 1000Optional

Maximum number of items to return (1-1000)

Default: 10
cursorstringOptional

Cursor for pagination. Use the value from the 'nextCursor' field of the previous response.

Responses
200

Successful response

application/json
get
/createEmployees

Propose creation of Employees

post

Create new proposals to add Employee records. The proposals may be automatically approved or require manual approval depending on system configuration. You can submit multiple proposals in a single request.

Authorizations
Bodyobject[]
birthDatestring · dateOptional
emailstring · emailOptional
employeeNumberstringOptional
firstNamestringOptional
initialsstringOptional
remarkstringOptional
repositoryIDstring · uuidRequired
surnamestringRequired
Responses
post
/createEmployees

Get Employee creation proposal

get

Get details of a specific Employee creation proposal by ID

Authorizations
Path parameters
idstringRequired

CreateEmployeeProposal ID

Responses
200

Successful response

application/json
get
/createEmployees/{id}

List Employee deletion proposals

get

List all deleteEmployees proposals. These are proposed changes to delete Employee records that may be automatically approved or require manual approval depending on system configuration.

Authorizations
Query parameters
limitinteger · min: 1 · max: 1000Optional

Maximum number of items to return (1-1000)

Default: 10
cursorstringOptional

Cursor for pagination. Use the value from the 'nextCursor' field of the previous response.

Responses
200

Successful response

application/json
get
/deleteEmployees

Propose deletion of Employees

post

Create new proposals to delete Employee records. The proposals may be automatically approved or require manual approval depending on system configuration. You can submit multiple proposals in a single request.

Authorizations
Bodyobject[]
idstring · uuidRequired
repositoryIDstring · uuidRequired
Responses
post
/deleteEmployees

Get Employee deletion proposal

get

Get details of a specific Employee deletion proposal by ID

Authorizations
Path parameters
idstringRequired

DeleteEmployeeProposal ID

Responses
200

Successful response

application/json
get
/deleteEmployees/{id}

List Employee update proposals

get

List all updateEmployees proposals. These are proposed changes to update existing Employee records that may be automatically approved or require manual approval depending on system configuration.

Filter Syntax:

  • Filters use exact match only

  • Multiple filters are combined with AND logic

  • Filterable fields: employeeNumber

  • Example: ?employeeNumber=example-value

Authorizations
Query parameters
employeeNumberstringOptional

Filter by employeeNumber (exact match)

limitinteger · min: 1 · max: 1000Optional

Maximum number of items to return (1-1000)

Default: 10
cursorstringOptional

Cursor for pagination. Use the value from the 'nextCursor' field of the previous response.

Responses
200

Successful response

application/json
get
/updateEmployees

Propose update of Employees

post

Create new proposals to update Employee records. All fields are optional - omitted fields will not be changed. Only include fields you want to update. Setting a field to null will clear its value (where applicable). The proposals may be automatically approved or require manual approval depending on system configuration. You can submit multiple proposals in a single request.

Authorizations
Bodyobject[]
birthDatestring · dateOptional

Omit this field to keep current value

emailstring · emailOptional

Omit this field to keep current value

employeeNumberstringOptional

Omit this field to keep current value

firstNamestringOptional

Omit this field to keep current value

idstring · uuidRequired
initialsstringOptional

Omit this field to keep current value

remarkstringOptional

Omit this field to keep current value

repositoryIDstring · uuidRequired
surnamestringOptional

Omit this field to keep current value

Responses
post
/updateEmployees

Get Employee update proposal

get

Get details of a specific Employee update proposal by ID

Authorizations
Path parameters
idstringRequired

UpdateEmployeeProposal ID

Responses
200

Successful response

application/json
get
/updateEmployees/{id}

Last updated

Was this helpful?