API Reference
- Company Onboarding
- User Onboarding
- Admin Portal
- User Portal
- Payroll
- Benefits
- Reports
- Webhooks
User Onboarding
updateKycInformation
Use the below endpoint to Update Kyc information if it satisfies the condition - The customer operates from the company’s registered location.
PUT
/
userOnboarding#updateKycInformation
curl --request PUT \
--url 'https://sandbox.rollfi.xyz/userOnboarding#updateKycInformation' \
--header 'Content-Type: application/json' \
--data '{
"method": "updateKycInformation",
"kycInformation": {
"userId": "e066e305-3816-4b06-8576-50d2502be436",
"ssn": "789895512",
"dateOfBirth": "2000-01-01",
"address1": "650 Capitol Mall",
"address2": "",
"city": "e",
"state": "Sacramento",
"zipcode": "95814"
},
"userRemoteLocation": {
"address1": "e",
"address2": "e",
"city": "e",
"state": "AZ",
"zipcode": "50023"
}
}'
{
"kycInformation": {
"userIdId": "e066e305-3816-4b06-8576-50d2502be436",
"status": "Ready",
"message": "The KYCInformation has been updated successfully."
}
}
Body
application/json
Response
200
application/json
The response is of type object
.
curl --request PUT \
--url 'https://sandbox.rollfi.xyz/userOnboarding#updateKycInformation' \
--header 'Content-Type: application/json' \
--data '{
"method": "updateKycInformation",
"kycInformation": {
"userId": "e066e305-3816-4b06-8576-50d2502be436",
"ssn": "789895512",
"dateOfBirth": "2000-01-01",
"address1": "650 Capitol Mall",
"address2": "",
"city": "e",
"state": "Sacramento",
"zipcode": "95814"
},
"userRemoteLocation": {
"address1": "e",
"address2": "e",
"city": "e",
"state": "AZ",
"zipcode": "50023"
}
}'
{
"kycInformation": {
"userIdId": "e066e305-3816-4b06-8576-50d2502be436",
"status": "Ready",
"message": "The KYCInformation has been updated successfully."
}
}
Assistant
Responses are generated using AI and may contain mistakes.