Versioning & Concurrency
ETags
HTTP/1.1 200 OK
ETag: "5"
Content-Type: application/json
{
"modelId": "01957c3a-...",
"name": "Applicant",
"status": "active"
}Conditional reads with If-None-Match
If-None-Matchcurl "$REKORD_BASE_URL/models/01957c3a-..." \
-H "Authorization: Bearer $REKORD_API_TOKEN" \
-H "If-None-Match: \"5\""Optimistic concurrency with If-Match
If-MatchHandling conflicts
When If-Match is optional
If-Match is optionalVersion integer
Content integrity
Last updated

