Employee Compensation Details

List payslips for an employee

Retrieves a paginated list of payslips for a specific employee.

get/v1/employees/{employeeId}/payslips

Path parameters

employeeIdstring uuid required

Unique identifier for the employee

Query parameters

pageinteger
Example:1

Page number (1-indexed)

pageSizeinteger
Example:20

Number of items per page

Response

Payslips retrieved successfully

Example response

{
  "data": [
    {
      "payslipId": "019f4b79-b3fe-7138-b4b6-1037923bb712",
      "employeeId": "019ed91c-17b4-797e-933a-2f99ee723033",
      "type": "EOR",
      "status": "AVAILABLE"
    }
  ],
  "pagination": {
    "page": 1,
    "pageSize": 20,
    "totalCount": 100,
    "totalPages": 5
  }
}