Developer docs
Record Reconsideration
POST
/v1/decisions/{decision_id}/reconsideration
const url = 'https://example.com/v1/decisions/example/reconsideration';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"requested_by":"example","reviewer":"example","reviewer_authority":"example","evidence_considered":["example"],"outcome":"upheld","rationale":"example","new_action":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/decisions/example/reconsideration \ --header 'Content-Type: application/json' \ --data '{ "requested_by": "example", "reviewer": "example", "reviewer_authority": "example", "evidence_considered": [ "example" ], "outcome": "upheld", "rationale": "example", "new_action": "example" }'Record a human reconsideration as its own SRF decision linked to the original.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”decision_id
required
Decision Id
string
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
ReconsiderationIn
object
requested_by
required
Requested By
Who asked for review (the affected person or their representative).
string
reviewer
required
Reviewer
string
reviewer_authority
required
Reviewer Authority
The reviewer’s authority to change the decision, e.g. medical_director, credit_officer.
string
evidence_considered
Evidence Considered
References to the evidence the reviewer considered (hashed, never stored).
Array<string>
outcome
required
Outcome
string
rationale
required
Rationale
Hashed into the record; the text itself stays with the customer.
string
Responses
Section titled “ Responses ”Successful Response
Media typeapplication/json
Response Record Reconsideration V1 Decisions Decision Id Reconsideration Post
object
key
additional properties
any
Examplegenerated
{}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}