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);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Auto-processing configuration retrieved successfully
Show child attributes
Whether auto-processing is currently enabled
Minimum source detection confidence (0-1)
0 <= x <= 1Minimum period detection confidence (0-1)
0 <= x <= 1Minimum schema detection confidence (0-1)
0 <= x <= 1If true, ALL thresholds must be met for auto-processing