getEmployeePayPeriodTimeCard
curl --request GET \
--url https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "getEmployeePayPeriodTimeCard",
"userId": "C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B",
"companyId": "5221FFCF-E84B-4690-B7DC-DE29D549096B",
"payPeriodId": "3EAEC271-6C06-4E17-8C3B-1C6649D534D5"
}
'import requests
url = "https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard"
payload = {
"method": "getEmployeePayPeriodTimeCard",
"userId": "C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B",
"companyId": "5221FFCF-E84B-4690-B7DC-DE29D549096B",
"payPeriodId": "3EAEC271-6C06-4E17-8C3B-1C6649D534D5"
}
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: 'getEmployeePayPeriodTimeCard',
userId: 'C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B',
companyId: '5221FFCF-E84B-4690-B7DC-DE29D549096B',
payPeriodId: '3EAEC271-6C06-4E17-8C3B-1C6649D534D5'
})
};
fetch('https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard', 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/getEmployeePayPeriodTimeCard",
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' => 'getEmployeePayPeriodTimeCard',
'userId' => 'C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B',
'companyId' => '5221FFCF-E84B-4690-B7DC-DE29D549096B',
'payPeriodId' => '3EAEC271-6C06-4E17-8C3B-1C6649D534D5'
]),
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/getEmployeePayPeriodTimeCard"
payload := strings.NewReader("{\n \"method\": \"getEmployeePayPeriodTimeCard\",\n \"userId\": \"C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B\",\n \"companyId\": \"5221FFCF-E84B-4690-B7DC-DE29D549096B\",\n \"payPeriodId\": \"3EAEC271-6C06-4E17-8C3B-1C6649D534D5\"\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/getEmployeePayPeriodTimeCard")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"method\": \"getEmployeePayPeriodTimeCard\",\n \"userId\": \"C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B\",\n \"companyId\": \"5221FFCF-E84B-4690-B7DC-DE29D549096B\",\n \"payPeriodId\": \"3EAEC271-6C06-4E17-8C3B-1C6649D534D5\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard")
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\": \"getEmployeePayPeriodTimeCard\",\n \"userId\": \"C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B\",\n \"companyId\": \"5221FFCF-E84B-4690-B7DC-DE29D549096B\",\n \"payPeriodId\": \"3EAEC271-6C06-4E17-8C3B-1C6649D534D5\"\n}"
response = http.request(request)
puts response.read_body{
"payPeriodTimeCard": {
"timeCardId": "4DDB60ED-BC33-49FA-A589-E29FB6C4FD5C",
"approvalStatus": "New",
"lastSynced": null,
"isOvertimeEligible": true,
"regularHours": 71.76,
"overtimeHours": 10.46,
"workDates": [
{
"workDate": "2026-03-01",
"regularHours": 8,
"overtimeHours": 3.67,
"timeEntries": [
{
"timeEntryId": "8B57BE5E-D6F3-49C4-9A7A-CFBE74019C00",
"clockInTime": "07:30:00",
"clockOutTime": "19:40:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-02",
"regularHours": 8,
"overtimeHours": 1.75,
"timeEntries": [
{
"timeEntryId": "D70A1260-A592-4A5D-B0E5-36E02AF1BC4C",
"clockInTime": "09:30:00",
"clockOutTime": "19:45:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-03",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-04",
"regularHours": 8,
"overtimeHours": 0.27,
"timeEntries": [
{
"timeEntryId": "6CF7C88B-F0A0-4870-B8D3-8C90D533F152",
"clockInTime": "08:59:00",
"clockOutTime": "17:45:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-05",
"regularHours": 8,
"overtimeHours": 0.27,
"timeEntries": [
{
"timeEntryId": "AA441B88-9B18-4864-AE7E-8CDD033D8349",
"clockInTime": "08:59:00",
"clockOutTime": "17:45:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-06",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-07",
"regularHours": 7.75,
"overtimeHours": 0,
"timeEntries": [
{
"timeEntryId": "3F62FCBA-5218-4655-A607-4896C586CE2F",
"clockInTime": "10:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-08",
"regularHours": 8,
"overtimeHours": 0.75,
"timeEntries": [
{
"timeEntryId": "FD706B06-0633-40DD-BB20-D38E10153BDF",
"clockInTime": "09:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-09",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-10",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-11",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-12",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-13",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-14",
"regularHours": 8,
"overtimeHours": 0.75,
"timeEntries": [
{
"timeEntryId": "C94195E5-EA1D-4A0E-B49F-5AEB69A384FC",
"clockInTime": "09:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-15",
"regularHours": 8,
"overtimeHours": 0.75,
"timeEntries": [
{
"timeEntryId": "936F5117-63CA-4011-98CB-C8ED4D891BCB",
"clockInTime": "09:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-16",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-17",
"regularHours": 8,
"overtimeHours": 2.25,
"timeEntries": [
{
"timeEntryId": "17A2DF13-EB87-4F5C-AD53-70F4B0E213AE",
"clockInTime": "09:00:00",
"clockOutTime": "20:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
},
{
"breakStart": "16:00:00",
"breakEnd": "16:30:00"
}
]
}
]
},
{
"workDate": "2026-03-18",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-19",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-20",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-21",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-22",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-23",
"regularHours": 0.01,
"overtimeHours": 0,
"timeEntries": [
{
"timeEntryId": "4942446B-5B19-4FC2-9559-9B74DE58D29B",
"clockInTime": "23:32:28",
"clockOutTime": "23:39:06",
"breaks": [
{
"breakStart": "23:32:37",
"breakEnd": "23:39:06"
}
]
}
]
},
{
"workDate": "2026-03-24",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-25",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-26",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-27",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-28",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-29",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-30",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-31",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
}
]
}
}{
"error": {
"code": 400,
"message": "companyId is required."
}
}Time Tracking
getEmployeePayPeriodTimeCard
The getEmployeePayPeriodTimeCard API retrieves an employee’s timecard for a given payPeriod
When to use:
- To display timecards on employee facing screens
- For a more detailed view of time entries so individual days can be edited, and the timecard can be approved using
updateTimeCardApprovals
What it does:
- Fetches in depth time entry information for an employee in a given payPeriod
- Displays time entries and breaks for each day in the payPeriod
- Displays top level totals for the employee’s timecard and their overtime eligibility
Notes:
- All times are displayed in the employee’s local time
- For more information about timeCard statuses please see our Time Tracking Guide.
GET
/
reports
/
getEmployeePayPeriodTimeCard
getEmployeePayPeriodTimeCard
curl --request GET \
--url https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "getEmployeePayPeriodTimeCard",
"userId": "C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B",
"companyId": "5221FFCF-E84B-4690-B7DC-DE29D549096B",
"payPeriodId": "3EAEC271-6C06-4E17-8C3B-1C6649D534D5"
}
'import requests
url = "https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard"
payload = {
"method": "getEmployeePayPeriodTimeCard",
"userId": "C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B",
"companyId": "5221FFCF-E84B-4690-B7DC-DE29D549096B",
"payPeriodId": "3EAEC271-6C06-4E17-8C3B-1C6649D534D5"
}
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: 'getEmployeePayPeriodTimeCard',
userId: 'C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B',
companyId: '5221FFCF-E84B-4690-B7DC-DE29D549096B',
payPeriodId: '3EAEC271-6C06-4E17-8C3B-1C6649D534D5'
})
};
fetch('https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard', 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/getEmployeePayPeriodTimeCard",
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' => 'getEmployeePayPeriodTimeCard',
'userId' => 'C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B',
'companyId' => '5221FFCF-E84B-4690-B7DC-DE29D549096B',
'payPeriodId' => '3EAEC271-6C06-4E17-8C3B-1C6649D534D5'
]),
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/getEmployeePayPeriodTimeCard"
payload := strings.NewReader("{\n \"method\": \"getEmployeePayPeriodTimeCard\",\n \"userId\": \"C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B\",\n \"companyId\": \"5221FFCF-E84B-4690-B7DC-DE29D549096B\",\n \"payPeriodId\": \"3EAEC271-6C06-4E17-8C3B-1C6649D534D5\"\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/getEmployeePayPeriodTimeCard")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"method\": \"getEmployeePayPeriodTimeCard\",\n \"userId\": \"C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B\",\n \"companyId\": \"5221FFCF-E84B-4690-B7DC-DE29D549096B\",\n \"payPeriodId\": \"3EAEC271-6C06-4E17-8C3B-1C6649D534D5\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.rollfi.xyz/reports/getEmployeePayPeriodTimeCard")
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\": \"getEmployeePayPeriodTimeCard\",\n \"userId\": \"C4CA148F-F2C6-4E70-8349-57CC6DFC1C2B\",\n \"companyId\": \"5221FFCF-E84B-4690-B7DC-DE29D549096B\",\n \"payPeriodId\": \"3EAEC271-6C06-4E17-8C3B-1C6649D534D5\"\n}"
response = http.request(request)
puts response.read_body{
"payPeriodTimeCard": {
"timeCardId": "4DDB60ED-BC33-49FA-A589-E29FB6C4FD5C",
"approvalStatus": "New",
"lastSynced": null,
"isOvertimeEligible": true,
"regularHours": 71.76,
"overtimeHours": 10.46,
"workDates": [
{
"workDate": "2026-03-01",
"regularHours": 8,
"overtimeHours": 3.67,
"timeEntries": [
{
"timeEntryId": "8B57BE5E-D6F3-49C4-9A7A-CFBE74019C00",
"clockInTime": "07:30:00",
"clockOutTime": "19:40:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-02",
"regularHours": 8,
"overtimeHours": 1.75,
"timeEntries": [
{
"timeEntryId": "D70A1260-A592-4A5D-B0E5-36E02AF1BC4C",
"clockInTime": "09:30:00",
"clockOutTime": "19:45:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-03",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-04",
"regularHours": 8,
"overtimeHours": 0.27,
"timeEntries": [
{
"timeEntryId": "6CF7C88B-F0A0-4870-B8D3-8C90D533F152",
"clockInTime": "08:59:00",
"clockOutTime": "17:45:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-05",
"regularHours": 8,
"overtimeHours": 0.27,
"timeEntries": [
{
"timeEntryId": "AA441B88-9B18-4864-AE7E-8CDD033D8349",
"clockInTime": "08:59:00",
"clockOutTime": "17:45:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:30:00"
}
]
}
]
},
{
"workDate": "2026-03-06",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-07",
"regularHours": 7.75,
"overtimeHours": 0,
"timeEntries": [
{
"timeEntryId": "3F62FCBA-5218-4655-A607-4896C586CE2F",
"clockInTime": "10:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-08",
"regularHours": 8,
"overtimeHours": 0.75,
"timeEntries": [
{
"timeEntryId": "FD706B06-0633-40DD-BB20-D38E10153BDF",
"clockInTime": "09:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-09",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-10",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-11",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-12",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-13",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-14",
"regularHours": 8,
"overtimeHours": 0.75,
"timeEntries": [
{
"timeEntryId": "C94195E5-EA1D-4A0E-B49F-5AEB69A384FC",
"clockInTime": "09:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-15",
"regularHours": 8,
"overtimeHours": 0.75,
"timeEntries": [
{
"timeEntryId": "936F5117-63CA-4011-98CB-C8ED4D891BCB",
"clockInTime": "09:00:00",
"clockOutTime": "18:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
}
]
}
]
},
{
"workDate": "2026-03-16",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-17",
"regularHours": 8,
"overtimeHours": 2.25,
"timeEntries": [
{
"timeEntryId": "17A2DF13-EB87-4F5C-AD53-70F4B0E213AE",
"clockInTime": "09:00:00",
"clockOutTime": "20:30:00",
"breaks": [
{
"breakStart": "12:00:00",
"breakEnd": "12:45:00"
},
{
"breakStart": "16:00:00",
"breakEnd": "16:30:00"
}
]
}
]
},
{
"workDate": "2026-03-18",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-19",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-20",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-21",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-22",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-23",
"regularHours": 0.01,
"overtimeHours": 0,
"timeEntries": [
{
"timeEntryId": "4942446B-5B19-4FC2-9559-9B74DE58D29B",
"clockInTime": "23:32:28",
"clockOutTime": "23:39:06",
"breaks": [
{
"breakStart": "23:32:37",
"breakEnd": "23:39:06"
}
]
}
]
},
{
"workDate": "2026-03-24",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-25",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-26",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-27",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-28",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-29",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-30",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
},
{
"workDate": "2026-03-31",
"regularHours": 0,
"overtimeHours": 0,
"timeEntries": []
}
]
}
}{
"error": {
"code": 400,
"message": "companyId is required."
}
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Response
Employee pay period time card
Show child attributes
Show child attributes
⌘I
