curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getStateRegistration' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getStateRegistration",
"code": "WA"
}'
{
"code": "WA",
"companyStateRegistrationFieldList": {
"Employment Security Department Account Number": "",
"Universal Business ID (UBI)": "",
"Labor and Industries Account Number": "",
"Required to pay PFML employer portion?": "",
"EAF Tax Rate": "",
"Unemployment Rate": ""
},
"fieldDescription": {
"Employment Security Department Account Number": {
"isMandatory": false
},
"Universal Business ID (UBI)": {
"isMandatory": false
},
"Labor and Industries Account Number": {
"isMandatory": false
},
"Required to pay PFML employer portion?": {
"isMandatory": true
},
"EAF Tax Rate": {
"isMandatory": false
},
"Unemployment Rate": {
"isMandatory": true
}
}
}
This API is for get the Pay begin dates for Monthly and SemiMonthly.
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getStateRegistration' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getStateRegistration",
"code": "WA"
}'
{
"code": "WA",
"companyStateRegistrationFieldList": {
"Employment Security Department Account Number": "",
"Universal Business ID (UBI)": "",
"Labor and Industries Account Number": "",
"Required to pay PFML employer portion?": "",
"EAF Tax Rate": "",
"Unemployment Rate": ""
},
"fieldDescription": {
"Employment Security Department Account Number": {
"isMandatory": false
},
"Universal Business ID (UBI)": {
"isMandatory": false
},
"Labor and Industries Account Number": {
"isMandatory": false
},
"Required to pay PFML employer portion?": {
"isMandatory": true
},
"EAF Tax Rate": {
"isMandatory": false
},
"Unemployment Rate": {
"isMandatory": true
}
}
}
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
.