- Home
- Staff Management
- Time Tracking
- Timesheets
- Schedules
- Commissions
- Sales Performance
- Payroll Management
- Checklists
Retrieve payroll history
GET
/payroll/{staff_id}/history
Payroll Management
Request
Path Params
staff_id
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/payroll//history'
Responses
🟢200OK
application/json
Body
staff_id
string
optional
history
array [object {2}]
optional
date
string
optional
amount
number
optional
Example
{
"staff_id": "string",
"history": [
{
"date": "string",
"amount": 0
}
]
}
🟠404Record Not Found
🔴500Server Error