API Reference
- Company Onboarding
- User Onboarding
- Admin Portal
- POSTaddCompanyBankAccount
- PUTdeactivateCompanyBankAccount
- POSTaddUser
- POSTaddBusinessContractor
- PUTupdateUser
- POSTaddUsers
- POSTaddStateRegistration
- PUTupdateStateRegistration
- POSTaddUserWage
- PUTupdateUserWage
- PUTupdateBusinessUserAsEmployee
- PUTupdateEmployeeAsBusinessUser
- PUTupdateBusinessUser
- PUTupdateCompanyLocation
- POSTactivateUser
- POSTdeactivateUser
- DELdeleteStateRegistration
- PUTterminateUser
- StateRegistration
- POST
- User Portal
- Payroll
- Benefits
- Reports
- Webhooks
Admin Portal
updateStateRegistration
Inorder to update the Company State Registration based on the State_Id this endpoint is used.
PUT
/
adminPortal#updateStateRegistration
curl --request PUT \
--url 'https://sandbox.rollfi.xyz/adminPortal#updateStateRegistration' \
--header 'Content-Type: application/json' \
--data '{
"method": "updateStateRegistration",
"companyId": "962D5035-6F51-41D3-94E8-1BF7A00955CF",
"code": "AK",
"companyStateRegistration": {
"UI Account Number": "741258052",
"Unemployment Rate": "3.0"
}
}'
{
"status": "Success",
"message": "The Company State Registrations have been updated successfully."
}
Body
application/json
Response
200
application/json
The response is of type object
.
curl --request PUT \
--url 'https://sandbox.rollfi.xyz/adminPortal#updateStateRegistration' \
--header 'Content-Type: application/json' \
--data '{
"method": "updateStateRegistration",
"companyId": "962D5035-6F51-41D3-94E8-1BF7A00955CF",
"code": "AK",
"companyStateRegistration": {
"UI Account Number": "741258052",
"Unemployment Rate": "3.0"
}
}'
{
"status": "Success",
"message": "The Company State Registrations have been updated successfully."
}
Assistant
Responses are generated using AI and may contain mistakes.