Resolve a reconciliation finding
Resolves one finding through the existing Work-domain reconciliation policy. Approved entries remain protected from mutation.
POST
/api/v1/time-reconciliation-findings/:id/resolveAuthorization
time:reconcileapi key scoperequiredRequired scope when calling with an API key.
Path parameters
idstringrequiredFinding ID
Example: finding_01k2...
Request body
resolution_actionstringrequired"dismiss" | "reviewed_keep_both" | "prefer_timely" | "prefer_ds_native"Governed resolution command
confirmbooleanrequiredMust be true
Example request
{
"resolution_action": "prefer_ds_native",
"confirm": true
}Request
curl -X POST "https://www.digitalstack360.com/api/v1/time-reconciliation-findings/finding_01k2.../resolve" \
-H "Authorization: Bearer $DS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"resolution_action":"prefer_ds_native","confirm":true}'Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.
Response
200 OK
{
"data": {
"id": "finding_01k2...",
"state": "resolved",
"resolution_action": "prefer_ds_native",
"entries_updated": 0
},
"meta": {
"admin_only": true
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
400
bad_requestMissing or invalid request fields
403
scope_insufficientKey lacks the required write scope
403
admin_requiredWorkspace admin or owner role is required
423
approved_entry_lockedResolution cannot mutate an approved entry