getPayrollHistoryBasedOnPayPeriod
curl --request GET \
--url https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "getPayrollHistoryBasedOnPayPeriod",
"payPeriodId": "FD8B55C3-FB80-4DF3-89DF-D48E65750BF2"
}
'import requests
url = "https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod"
payload = {
"method": "getPayrollHistoryBasedOnPayPeriod",
"payPeriodId": "FD8B55C3-FB80-4DF3-89DF-D48E65750BF2"
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
method: 'getPayrollHistoryBasedOnPayPeriod',
payPeriodId: 'FD8B55C3-FB80-4DF3-89DF-D48E65750BF2'
})
};
fetch('https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'method' => 'getPayrollHistoryBasedOnPayPeriod',
'payPeriodId' => 'FD8B55C3-FB80-4DF3-89DF-D48E65750BF2'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod"
payload := strings.NewReader("{\n \"method\": \"getPayrollHistoryBasedOnPayPeriod\",\n \"payPeriodId\": \"FD8B55C3-FB80-4DF3-89DF-D48E65750BF2\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"method\": \"getPayrollHistoryBasedOnPayPeriod\",\n \"payPeriodId\": \"FD8B55C3-FB80-4DF3-89DF-D48E65750BF2\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"method\": \"getPayrollHistoryBasedOnPayPeriod\",\n \"payPeriodId\": \"FD8B55C3-FB80-4DF3-89DF-D48E65750BF2\"\n}"
response = http.request(request)
puts response.read_body{
"payPeriod": [
{
"payPeriodId": "FD8B55C3-FB80-4DF3-89DF-D48E65750BF2",
"payPeriod": "06/15/2025 - 06/28/2025",
"deadLineToRunPayroll": "2025-06-27",
"total": 4.62,
"employeeTaxSum": 0.36,
"employerTaxSum": 0.48,
"isProcessed": true,
"payDate": "2025-07-01",
"payEndDate": "2025-06-28",
"payBeginDate": "2025-06-15",
"workerType": "W2",
"payrollLineItems": [
{
"baseTotal": 4.62,
"numberOfLeaveDays": 0,
"lop": 0,
"retroAmount": 0,
"grossTotal": 4.62,
"netTotal": 4.26,
"userId": "C88011F6-954A-445B-B5B5-EAFCCBA95D98",
"employee": "Jad Abisaleh",
"employeeTax": 0.36,
"payrollLineItemDeductions": [],
"payDetails": [
{
"payPercentage": 100,
"amount": 4.26,
"employeePayAccount": "savings ... 1111"
}
],
"payrollLineItemOverTimes": [],
"payrollLineItemAdditionalCompensations": []
}
]
}
]
}{
"error": {
"code": 400,
"message": "Invalid WorkerType"
}
}Reports
getPayrollHistoryBasedOnPayPeriod
The getPayrollHistoryBasedOnPayPeriod API retrieves complete payroll history for a specific pay period.
What it does:
- Returns detailed payroll information for all employees within a specific pay period
- Provides payroll line items including wages, taxes, deductions, and net pay for the specified pay period
Note:
- For requests encompassing a single pay period (duration defined when payroll was set up)
GET
/
reports
/
getPayrollHistoryBasedOnPayPeriod
getPayrollHistoryBasedOnPayPeriod
curl --request GET \
--url https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "getPayrollHistoryBasedOnPayPeriod",
"payPeriodId": "FD8B55C3-FB80-4DF3-89DF-D48E65750BF2"
}
'import requests
url = "https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod"
payload = {
"method": "getPayrollHistoryBasedOnPayPeriod",
"payPeriodId": "FD8B55C3-FB80-4DF3-89DF-D48E65750BF2"
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
method: 'getPayrollHistoryBasedOnPayPeriod',
payPeriodId: 'FD8B55C3-FB80-4DF3-89DF-D48E65750BF2'
})
};
fetch('https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'method' => 'getPayrollHistoryBasedOnPayPeriod',
'payPeriodId' => 'FD8B55C3-FB80-4DF3-89DF-D48E65750BF2'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod"
payload := strings.NewReader("{\n \"method\": \"getPayrollHistoryBasedOnPayPeriod\",\n \"payPeriodId\": \"FD8B55C3-FB80-4DF3-89DF-D48E65750BF2\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"method\": \"getPayrollHistoryBasedOnPayPeriod\",\n \"payPeriodId\": \"FD8B55C3-FB80-4DF3-89DF-D48E65750BF2\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.rollfi.xyz/reports/getPayrollHistoryBasedOnPayPeriod")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"method\": \"getPayrollHistoryBasedOnPayPeriod\",\n \"payPeriodId\": \"FD8B55C3-FB80-4DF3-89DF-D48E65750BF2\"\n}"
response = http.request(request)
puts response.read_body{
"payPeriod": [
{
"payPeriodId": "FD8B55C3-FB80-4DF3-89DF-D48E65750BF2",
"payPeriod": "06/15/2025 - 06/28/2025",
"deadLineToRunPayroll": "2025-06-27",
"total": 4.62,
"employeeTaxSum": 0.36,
"employerTaxSum": 0.48,
"isProcessed": true,
"payDate": "2025-07-01",
"payEndDate": "2025-06-28",
"payBeginDate": "2025-06-15",
"workerType": "W2",
"payrollLineItems": [
{
"baseTotal": 4.62,
"numberOfLeaveDays": 0,
"lop": 0,
"retroAmount": 0,
"grossTotal": 4.62,
"netTotal": 4.26,
"userId": "C88011F6-954A-445B-B5B5-EAFCCBA95D98",
"employee": "Jad Abisaleh",
"employeeTax": 0.36,
"payrollLineItemDeductions": [],
"payDetails": [
{
"payPercentage": 100,
"amount": 4.26,
"employeePayAccount": "savings ... 1111"
}
],
"payrollLineItemOverTimes": [],
"payrollLineItemAdditionalCompensations": []
}
]
}
]
}{
"error": {
"code": 400,
"message": "Invalid WorkerType"
}
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Response
Show child attributes
Show child attributes
⌘I
