Core
  1. Teachers
Core
  • Introduction
    • What is Core
    • HTTP Statuses
    • Request
    • Responses
    • Meta
    • Limit & Pagination
    • Query Parameters
  • Quick Start
    • Letters
  • Auth
    • Sign In with Email and Password
      POST
    • Get the Current Session
      GET
    • Sign Out the Current User
      POST
  • Users
    • Get All Users
      GET
    • Create a User
      POST
    • Retrieve an Existing User
      GET
    • Delete an Existing User
      DELETE
    • Update an Existing User
      PATCH
    • Get Current User
      GET
    • Update Current User
      PATCH
    • Get Current User Devices
      GET
    • Retrieve User Devices by User ID
      GET
    • Update Own Profile Image
      POST
    • Update User Image
      POST
    • Reset User Password
      PATCH
    • Get User Login History
      GET
  • Staff
    • Get All Staff
    • Retrieve an Existing Staff
    • Create a Staff
    • Delete an Existing Staff
    • Update an Existing Staff
  • Teachers
    • Get All Teachers
      GET
    • Retrieve an Existing Teacher
      GET
    • Create a Teacher
      POST
    • Delete an Existing Teacher
      DELETE
    • Update an Existing Teacher
      PATCH
  • Students
    • Get All Students
    • Retrieve an Existing Student
    • Create a Student
    • Delete an Existing Student
    • Update an Existing Student
    • Import Bulk Students
  • Roles
    • Get All Roles
    • Create a Role
    • Retrieve an Existing Role
    • Update an Existing Role
    • Delete an Existing Role
    • Get All Eligible Users for Role
    • Get All Members of Role
    • Add Bulk Member to Role
    • Remove Bulk Members from Role
  • Classes
    • Get All Classes
    • Create a Class
    • Delete an Existing Student Copy
    • Create a Class Copy
  • Statistics
    • Teachers
      • Get Teacher Gender Stats
      • Get Teacher Religion Distribution
      • Get Teacher Employment Stats
      • Get Teacher Age Stats
    • Students
      • Get Student Gender Stats
      • Get Student Religion Distribution
      • Get Student Weight Stats
      • Get Student Height Stats
      • Get Student Age Stats
      • Get Student Transportation Stats
      • Get Student Class Stats
    • Staffs
      • Get Staffs Gender Stats
      • Get Staffs Religion Distribution
      • Get Staffs Age Stats
      • Get Staffs Employment Stats
    • Users
      • Retrieve User Summary
    • Get All Stats
  • Letters
    • Get All Letters
    • Retrieve an Existing Letter
    • Create a Letter
    • List User Letter
    • List Current User Letter
    • List Recipients
  • Letter Actions
    • Initiate a Letter Action
  • Files
    • Create a Presigned URL
  • Schemas
    • Schemas
      • Letter
        • LetterHistory
        • LetterStatus
        • LetterType
      • User
        • UserProfile
      • Address
      • Meta
      • Base
      • bloodType
      • Religion
      • Gender
      • ParentInfo
      • Error
      • GenderStats
      • ReligionDistribution
      • WeightStats
      • HeightStats
      • AgeStats
      • TransportationStats
      • ClassStats
      • EducationHistoryObject
      • EmploymentStats
      • Location
      • EconomyStats
      • Actor
    • Model
      • User
      • Teacher
      • Staff
      • Student
      • Letter
      • Class
      • Roles
    • LoginHistory
  1. Teachers

Retrieve an Existing Teacher

Designing
GET
/teachers/{teacher_id}
To show information about an individual Teacher, send a GET request to /teachers/{teacher_id}

Request

Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sims.sman1samarinda.sch.id/api/teachers/6939240a9e6b6fc73f8c85ef'

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "OK.",
    "meta": {},
    "errors": [],
    "result": {
        "address": {
            "street": "28679 E 9th Street",
            "rt": "613",
            "rw": "813",
            "subDistrict": "Grant County",
            "district": "East Sussex",
            "city": "Semarang",
            "province": "Jawa Tengah",
            "country": "Indonesia",
            "postalCode": "26291",
            "location": {
                "type": "POINT",
                "coordinates": [
                    110.3774378963981,
                    -6.919662452676573
                ]
            }
        },
        "father": {
            "name": "Mr. Al Emard",
            "nik": "0678713697148015",
            "birthPlace": "West Trent",
            "birthDate": "1982-11-05T16:48:40.802Z",
            "education": "S3",
            "phone": "+628133506473",
            "occupation": "Petani",
            "income": "2000000",
            "specialNeeds": []
        },
        "mother": {
            "name": "Randolph Goyette",
            "nik": "6400314569410283",
            "birthPlace": "Pasadena",
            "birthDate": "1973-07-05T11:09:42.952Z",
            "education": "S3",
            "phone": "+628254350685",
            "occupation": "Guru",
            "income": "7000000",
            "specialNeeds": []
        },
        "id": "6939240a9e6b6fc73f8c85ec",
        "userId": "693924079e6b6fc73f8c8554",
        "nik": "6386876747383031",
        "nip": "720629215443100335",
        "taxNumber": "86.015.967.6-379.401",
        "taxName": "Daniel Treutel",
        "familyCardNumber": "1585928861893698",
        "religion": "CHRISTIAN",
        "birthDate": "1990-08-20T10:33:06.408Z",
        "birthPlace": "East Stephonshire",
        "phone": "+628430197270",
        "gender": "FEMALE",
        "employmentStatus": "PPPK",
        "nationality": "Indonesia",
        "maritalStatus": "Cerai Hidup",
        "spouseName": null,
        "spouseNip": "317586457701902607",
        "spouseOccupation": null,
        "specialNeeds": [],
        "user": {
            "id": "693924079e6b6fc73f8c8554",
            "name": "Daniel Treutel",
            "email": "teacher3@sekolah.sch.id",
            "image": "core/profile/1768059805474-fd700a5ea560fe3d/alfrdzley.jpeg",
            "active": true
        }
    }
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Modified at 2026-01-06 12:35:12
Previous
Get All Teachers
Next
Create a Teacher
Built with