curl --request GET \
--url https://api.royalti.io/file/auto-processing-config \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Auto-processing configuration retrieved successfully",
"data": {
"autoProcessEnabled": true,
"sourceThreshold": 0.85,
"periodThreshold": 0.75,
"schemaThreshold": 0.8,
"requireAllThresholds": true
}
}Get auto-processing configuration
curl --request GET \
--url https://api.royalti.io/file/auto-processing-config \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Auto-processing configuration retrieved successfully",
"data": {
"autoProcessEnabled": true,
"sourceThreshold": 0.85,
"periodThreshold": 0.75,
"schemaThreshold": 0.8,
"requireAllThresholds": true
}
}const response = await fetch('https://api.royalti.io/file/auto-processing-config', {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);