curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getCompanyTask' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getCompanyTask",
"companyId": "2DFCA586-C2D4-4FD7-B823-063F2575A5E7"
}'
{
"tasks": [
{
"task": "Add Wage",
"description": "Enter pay details to 41 team members ready for payday"
},
{
"task": "Form DR-835 Signature request",
"description": "Form DR-835 allows us to file and pay taxes on your behalf"
},
{
"task": "Form 8655 Signature request",
"description": "Form 8655 allows us to file and pay taxes on your behalf"
},
{
"task": "Add check details",
"description": "Provide check details"
},
{
"task": "Missing State tax information",
"description": "Missing State Tax Registration Details for CO"
},
{
"task": "Run Payroll",
"description": "Overdue for employees by 50 days to run payroll for [05/28/2025-06/03/2025]"
}
]
}
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getCompanyTask' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getCompanyTask",
"companyId": "2DFCA586-C2D4-4FD7-B823-063F2575A5E7"
}'
{
"tasks": [
{
"task": "Add Wage",
"description": "Enter pay details to 41 team members ready for payday"
},
{
"task": "Form DR-835 Signature request",
"description": "Form DR-835 allows us to file and pay taxes on your behalf"
},
{
"task": "Form 8655 Signature request",
"description": "Form 8655 allows us to file and pay taxes on your behalf"
},
{
"task": "Add check details",
"description": "Provide check details"
},
{
"task": "Missing State tax information",
"description": "Missing State Tax Registration Details for CO"
},
{
"task": "Run Payroll",
"description": "Overdue for employees by 50 days to run payroll for [05/28/2025-06/03/2025]"
}
]
}
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
.