curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getUserTask' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getUserTask",
"userId": "D32D7451-FE6C-44D3-8DDB-E6442A15884E"
}'
{
"task": [
{
"type": "KYC Verification",
"description": "Your KYC status is pending. Please wait for the process to complete or contact support for more information."
},
{
"type": "Link Direct Deposit Account",
"description": "Connect your direct deposit account"
}
]
}
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getUserTask' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getUserTask",
"userId": "D32D7451-FE6C-44D3-8DDB-E6442A15884E"
}'
{
"task": [
{
"type": "KYC Verification",
"description": "Your KYC status is pending. Please wait for the process to complete or contact support for more information."
},
{
"type": "Link Direct Deposit Account",
"description": "Connect your direct deposit account"
}
]
}
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
.