EMS-UGC API Docs
Students

Create Student

Student Creation & Registration APIs

Base URL: http://192.168.100.250/

Create Form Data (page load)

GET {{baseUrl}}/students/create

Get Programs (on Faculty change)

GET {{baseUrl}}/faculties/{{facultyId}}/programs

Create Student

POST {{baseUrl}}/students
Content-Type: application/json
{
  "reg_no": "TU-BMC-2024-001",
  "first_name": "Hari",
  "middle_name": "Prasad",
  "last_name": "Sharma",
  "nepali_name": "हरि प्रसाद शर्मा",
  "mobile_number": "9800000000",
  "email": "hari.sharma@example.com",
  "date_of_birth": "2050-05-12",
  "date_of_birth_eng": "1993-08-28",
  "gender": "Male",
  "marital_status": "Single",
  "blood_group": "A+",
  "handicap_category": null,
  "caste_ethnicity": "Brahmin",
  "edj": "Hindu",
  "disability_status": "able",
  "disability_type": null,
  "citizenship_number": "12-34-56-78901",
  "citizenship_issue_district": null,
  "national_id": "1993280123456",
  "nationality": null,
  "religion": null,
  "entrance_candidate_id": null,
  "has_scholarship": false,
  "is_mukta_kamaiya": false,
  "is_from_martyr_family": false,
  "is_economically_disadvantaged": false,
  "is_same_as_permanent": false,
  "permanent_province": "Bagmati",
  "permanent_district": "Chitwan",
  "permanent_local_level": "Bharatpur",
  "permanent_ward_no": "10",
  "permanent_tole": "Main Road",
  "permanent_house_no": "123",
  "permanent_block_no": null,
  "temporary_province": "Bagmati",
  "temporary_district": "Chitwan",
  "temporary_local_level": "Bharatpur",
  "temporary_ward_no": "10",
  "temporary_tole": "Main Road",
  "temporary_house_no": "123",
  "temporary_block_no": null,
  "father_name": "Krishna Sharma",
  "father_contact": "9800000001",
  "father_email": "krishna@example.com",
  "father_occupation": "Farmer",
  "mother_name": "Sita Sharma",
  "mother_contact": "9800000002",
  "mother_email": null,
  "mother_occupation": "Housewife",
  "local_guardian_name": null,
  "local_guardian_mobile": null,
  "local_guardian_relation": null,
  "local_guardian_address": null,
  "guardian_occupation": null,
  "guardian_email": null,
  "level_id": 1,
  "faculty_id": 36,
  "program_id": 1,
  "academic_year_id": 11,
  "batch_id": 1,
  "date_of_admission": "2080-01-01",
  "shift": "Day",
  "section": null,
  "roll_no": null,
  "reg_no_manual": null,
  "roll_no_manual": null,
  "university_regd_no": null
}

File uploads cannot be sent in JSON — use multipart/form-data for these fields:

  • photo (jpeg/png/jpg, max 2MB)
  • citizenship_pic (jpeg/png/jpg, max 2MB)
  • citizenship_front (jpeg/png/jpg, max 2MB)
  • citizenship_back (jpeg/png/jpg, max 2MB)
  • nid_pic (jpeg/png/jpg, max 2MB)
  • digital_signature (jpeg/png/jpg, max 2MB)

On this page