Payment Item Group Sequence

These endpoints let you manage payment item group sequences for employees. It allows you to retrieve sequences related to payment item groups (or payroll processes). This is useful for payroll processing and ensuring accurate payment calculations. It is created after a payroll process is completed, and it is used to track the sequence of payment item groups for each employee.

Get Last Payment Item Group Sequence

get

Return the last payment item group sequence.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
employeeIdstringRequiredExample: 0ab1c2d3-e4f5-6789-0123-456789abcdef
Responses
chevron-right
200

OK

application/json
employeeIdstringOptional
lastSequenceintegerOptional
get
/core/v1/employees/{employeeId}/payment-item-groups/last-sequence

Get Payment Item Group Sequences

get

Return the payment item group sequences.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
employeeIdstringRequiredExample: 0ab1c2d3-e4f5-6789-0123-456789abcdef
Query parameters
pageintegerOptional

Page number

Default: 0Example: 0
sizeinteger · min: 1 · max: 50Optional

Page size

Default: 10Example: 10
querystringOptional

Search Query

Supported KeysSupported OperatorsNotes
id:Equal operator
employee.id:Equal operator
paymentItemGroup.paymentType:Equal operator (REGULAR_SALARY / SEVERANCE / RETROACTIVE / ADDITIONAL_INCOME)
payrollSequenceNumber:Equal operator
Example: {"summary":"Search by Payment Item Group ID","value":"id:e18f5618-bc6c-11e6-80f5-76304dec7eb1"}
Responses
chevron-right
200

OK

application/json
totalPagesintegerRequired

Total number of pages available

lastbooleanRequired

Indicates whether this is the last page

totalElementsintegerRequired

Total number of elements across all pages

numberOfElementsintegerRequired

Number of elements in the current page

firstbooleanRequired

Indicates whether this is the first page

sizeintegerRequired

Size of the page (number of elements per page)

numberintegerRequired

Current page number (zero-indexed)

get
/core/v1/employees/{employeeId}/payment-item-groups/sequences

Last updated