Overview
The Update Education endpoint lets you modify an existing education entry’s details. Only include the fields you want to change. Pass null for optional fields to clear them.
Scope required: education:write | Rate limit: 20 requests/min
Request
Body Parameters
All fields are optional, but at least one must be provided.
School or institution name (max 200 characters)
Degree type (max 200 characters, null to clear)
Field of study (max 200 characters, null to clear)
ISO 8601 date string (null to clear)
ISO 8601 date string (null to clear)
Whether currently enrolled
Additional details (max 5000 characters, null to clear)
Example
curl -X PATCH "https://api.mokaru.ai/v1/education/clx1234" \
-H "Authorization: Bearer mk_your_key" \
-H "Content-Type: application/json" \
-d '{
"degree": "Master of Science",
"field": "Machine Learning"
}'
Response
Whether the education was updated
{
"success": true,
"id": "clx1234..."
}