cURL
curl --request GET \ --url 'https://sandbox.rollfi.xyz/reports#getPayRun' \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "method": "getPayRun", "payPeriodId": "3c90c3cc-0d44-4b50-8888-8dd25736052a" } '
{ "payrollLineItems": [ { "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "totalHours": 123, "wages": 123, "taxes": 123, "cash requirements": 123 } ] }
The getPayRun API retrieves payroll line item information for a specific pay period.
getPayRun
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
"getPayRun"
Show child attributes