Config Registry
Resolve a config
Explicitly starts or retries a project-scoped background analysis while preserving current global knowledge when available. Use /config-registry/lookup for side-effect-free reads.
post/config-registry/resolve
Request body
Example request
{
"allowed_proxy_countries": [
"US"
]
}Response
Current recommendation returned. Analysis is null if DNS validation or workflow submission prevented the requested refresh.
Example response
{
"analysis": {
"failure": {
"code": "bad_request",
"details": [
{
"code": "invalid_input",
"message": "Provided version string is not semver compliant"
}
],
"inner_error": {
"code": "invalid_input",
"message": "Provided version string is not semver compliant"
},
"message": "Missing required field: app_name"
}
},
"recommendation": {
"browser": {
"viewport": {
"height": 800,
"refresh_rate": 60,
"width": 1280
}
},
"proxy": {
"create": {
"config": {
"country": "US"
}
}
}
}
}