curl --request POST \
--url 'https://sandbox.rollfi.xyz/stateRegistration#addStateRegistrationForVirginia' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "addStateRegistration",
"companyId": "B599B497-48FD-4F1A-BB4D-8837A8DBEC71",
"code": "VA",
"companyStateRegistration": {
"State Tax Deposit frequency": "Monthly",
"Unemployment Rate": "2.5",
"VEC Account Number": "695955694",
"VA Tax Account Number": "741265586"
}
}'
{
"status": "Success",
"message": "The company state registrations for Lakin LLC have been saved successfully."
}
The respective Code of the State is entered for Verification
curl --request POST \
--url 'https://sandbox.rollfi.xyz/stateRegistration#addStateRegistrationForVirginia' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "addStateRegistration",
"companyId": "B599B497-48FD-4F1A-BB4D-8837A8DBEC71",
"code": "VA",
"companyStateRegistration": {
"State Tax Deposit frequency": "Monthly",
"Unemployment Rate": "2.5",
"VEC Account Number": "695955694",
"VA Tax Account Number": "741265586"
}
}'
{
"status": "Success",
"message": "The company state registrations for Lakin LLC have been saved successfully."
}
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
.