API Reference
- Company Onboarding
- User Onboarding
- Admin Portal
- User Portal
- Payroll
- Benefits
- Reports
- Webhooks
User Onboarding
addKycInformation
Use the below endpoint to Add Kyc information if it satisfies the condition - The customer operates from the company’s registered location.
POST
/
userOnboarding#addKycInformation
curl --request POST \
--url 'https://sandbox.rollfi.xyz/userOnboarding#addKycInformation' \
--header 'Content-Type: application/json' \
--data '{
"method": "addKycInformation",
"kycInformation": {
"userId": "5a2390e1-0f83-46bd-ae1c-81b30fe364e1",
"ssn": "789898953",
"dateOfBirth": "2000-01-01",
"address1": "777 West Convention Way",
"address2": "",
"city": "Anaheim",
"state": "CA",
"zipcode": "92802"
},
"userRemoteLocation": {
"address1": "e",
"address2": "e",
"city": "e",
"state": "AZ",
"zipcode": "50023"
}
}'
{
"kycInformation": {
"userId": "5a2390e1-0f83-46bd-ae1c-81b30fe364e1",
"status": "KYC Pending",
"message": "The KYC Information for jacob king has been added successfully."
}
}
Body
application/json
Response
200
application/json
The response is of type object
.
curl --request POST \
--url 'https://sandbox.rollfi.xyz/userOnboarding#addKycInformation' \
--header 'Content-Type: application/json' \
--data '{
"method": "addKycInformation",
"kycInformation": {
"userId": "5a2390e1-0f83-46bd-ae1c-81b30fe364e1",
"ssn": "789898953",
"dateOfBirth": "2000-01-01",
"address1": "777 West Convention Way",
"address2": "",
"city": "Anaheim",
"state": "CA",
"zipcode": "92802"
},
"userRemoteLocation": {
"address1": "e",
"address2": "e",
"city": "e",
"state": "AZ",
"zipcode": "50023"
}
}'
{
"kycInformation": {
"userId": "5a2390e1-0f83-46bd-ae1c-81b30fe364e1",
"status": "KYC Pending",
"message": "The KYC Information for jacob king has been added successfully."
}
}
Assistant
Responses are generated using AI and may contain mistakes.