Reports
getPayRun
API Reference
- Company Onboarding
- User Onboarding
- Admin Portal
- User Portal
- Payroll
- Benefits
- Reports
- GETgetBusinessUserInfo
- GETgetUserTask
- GETgetUsersByCompanyName
- GETgetCompanies
- GETgetPaidEmployeesCountBasedOnDateRange
- GETgetPayPeriodDetails
- GETgetPayPeriod
- GETgetCompanyInfo
- GETgetCompanyLocationInfo
- GETgetActiveUsers
- GETgetTerminatedUsers
- GETgetDeactivatedUsers
- GETgetPayrollHistoryBasedOnPayPeriod
- GETgetPayrollHistoryBasedOnDateRange
- GETgetPayRun
- GETgetPaySchedule
- GETgetPayStub
- GETgetTransactionBasedOnReference
- GETgetTransactions
- GETgetTransactionsBasedOnName
- GETgetBusinessUserDetails
- GETgetStateW4FormFeilds
- GETgetPayrollJournalReport
- GETgetUser
- GETgetPayBeginDates
- GETgetStateRegistration
- GETgetIndividualPayrollHistory
- GET
- Webhooks
Reports
getPayRun
This Report helps in getting the PayRollLineItems information based on PayPeriodId
GET
/
reports#getPayRun
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getPayRun' \
--header 'Content-Type: application/json' \
--data '{
"method": "getPayRun",
"payPeriodId": "1701499A-1F6A-4D96-9A45-2021A19777E6"
}'
{
"payrollLineItems": [
{
"userId": "50070F09-2923-499A-850B-F12ED4C2FD69",
"totalHours": 40,
"wages": 960,
"taxes": 129.99,
"cash requirements": 960
},
{
"userId": "9E3CBA77-9035-471F-AA1E-F77A13AFE5C2",
"totalHours": 40,
"wages": 2000,
"taxes": 429.74,
"cash requirements": 2000
}
]
}
Body
application/json
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getPayRun' \
--header 'Content-Type: application/json' \
--data '{
"method": "getPayRun",
"payPeriodId": "1701499A-1F6A-4D96-9A45-2021A19777E6"
}'
{
"payrollLineItems": [
{
"userId": "50070F09-2923-499A-850B-F12ED4C2FD69",
"totalHours": 40,
"wages": 960,
"taxes": 129.99,
"cash requirements": 960
},
{
"userId": "9E3CBA77-9035-471F-AA1E-F77A13AFE5C2",
"totalHours": 40,
"wages": 2000,
"taxes": 429.74,
"cash requirements": 2000
}
]
}