curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getPaySchedule' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getPaySchedule",
"companyId": "28fcb32e-29fe-4269-8aa3-011e7276ef5e"
}'
{
"paySchedule": [
{
"payBeginDate": "2023-11-16",
"payDate": "2023-11-30",
"payEndDate": "2023-11-30",
"deadlineToRunPayroll": "2023-11-28",
"workerType": {
"workerType": "W2"
},
"compensationFrequency": {
"compensationFrequency": "SemiMonthly"
}
}
]
}
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getPaySchedule' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getPaySchedule",
"companyId": "28fcb32e-29fe-4269-8aa3-011e7276ef5e"
}'
{
"paySchedule": [
{
"payBeginDate": "2023-11-16",
"payDate": "2023-11-30",
"payEndDate": "2023-11-30",
"deadlineToRunPayroll": "2023-11-28",
"workerType": {
"workerType": "W2"
},
"compensationFrequency": {
"compensationFrequency": "SemiMonthly"
}
}
]
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The response is of type object
.