Quickstart
Prerequisites
Step 1: Create a model
curl -X POST "$REKORD_BASE_URL/models" \
-H "Authorization: Bearer $REKORD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Applicant",
"description": "Mortgage applicant profile",
"fields": [
{
"name": "firstName",
"type": "text",
"description": "Applicant legal first name",
"required": true
},
{
"name": "lastName",
"type": "text",
"description": "Applicant legal last name",
"required": true
},
{
"name": "annualIncome",
"type": "currency",
"description": "Gross annual income",
"resolutionPolicy": "highest_confidence"
}
]
}'Step 2: Activate the model
Step 3: Create a decisioning context
Step 4: Ingest a contribution
Step 5: Read the resolved record
Step 6: Update the record directly
Next steps
Last updated

