Education API
The Education API provides endpoints for managing job seeker education records.Base URL
Endpoints Overview
Fields
Degree Type Enum
See detailed documentation for each endpoint in the API Reference section.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Education API - Manage job seeker education records
http://localhost:3000/api/v1
| Method | Endpoint | Description | Auth Required |
|---|---|---|---|
| GET | /job-seekers/me/educations | Get all educations | Yes (Authenticated) |
| GET | /job-seekers/me/educations/:educationId | Get education by ID | Yes (Authenticated) |
| POST | /job-seekers/me/educations | Create education | Yes (Authenticated) |
| PATCH | /job-seekers/me/educations/:educationId | Update education | Yes (Authenticated) |
| DELETE | /job-seekers/me/educations/:educationId | Delete education | Yes (Authenticated) |
| Field | Type | Required | Description |
|---|---|---|---|
institutionName | string | Yes | Name of the institution |
degreeType | enum | Yes | Type of degree obtained |
fieldOfStudy | string | Yes | Field of study |
description | string | No | Additional education details |
gpa | number | No | GPA (0-4 scale) |
startDate | string | Yes | Start date (ISO 8601 format) |
endDate | string | No | End date (ISO 8601 format) |
isCurrent | boolean | Yes | Currently studying here |
| Value | Description |
|---|---|
HIGH_SCHOOL | High school diploma |
ASSOCIATE | Associate degree |
BACHELOR | Bachelor’s degree |
MASTER | Master’s degree |
PHD | Doctorate/PhD |
BOOTCAMP | Coding bootcamp certificate |
CERTIFICATION | Professional certification |
OTHER | Other type of education |
