Core
  1. Staff
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
      GET
    • Retrieve an Existing Staff
      GET
    • Create a Staff
      POST
    • Delete an Existing Staff
      DELETE
    • Update an Existing Staff
      PATCH
  • Teachers
    • Get All Teachers
    • Retrieve an Existing Teacher
    • Create a Teacher
    • Delete an Existing Teacher
    • Update an Existing Teacher
  • 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. Staff

Get All Staff

GET
/staff
To list all Staff in your app, send a GET request to /staff
The response body will be a JSON object with a key of result. This will be set to an array containing objects each representing a Staff. These will contain the standard Staff attributes.

Request

Query 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/staff?page=1&limit=100&search=fauzan'

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "OK.",
    "meta": {
        "page": 52,
        "limit": 6,
        "total": 8163
    },
    "errors": [],
    "result": [
        {
            "id": "68f44e907ede1684986ca3ef",
            "user": {
                "id": "68f44e907ede1684986ca3ef",
                "name": "Fauzan Gifari",
                "email": "00001@sekolah.sch.id",
                "image": "path/to/image.png"
            },
            "gender": null,
            "birthPlace": "mollit",
            "birthDate": "2026-01-29T08:30:21.284Z",
            "mother": null,
            "employmentStatus": "Duis in",
            "address": {
                "street": "Jl. Beruang",
                "rt": "018",
                "rw": "078",
                "subDistrict": "Sempaja Utara",
                "district": "Samarinda Utara",
                "city": "Samarinda",
                "province": "Kalimantan Timur",
                "country": "ID",
                "postalCode": "75124",
                "location": {
                    "type": "POINT",
                    "coordinates": [
                        2,
                        17
                    ]
                }
            },
            "nip": "15.101.56.228"
        },
        {
            "id": "68f44e907ede1684986ca3ef",
            "user": {
                "id": "68f44e907ede1684986ca3ef",
                "name": "Fauzan Gifari",
                "email": "00001@sekolah.sch.id",
                "image": "path/to/image.png"
            },
            "gender": null,
            "birthPlace": null,
            "birthDate": "2026-01-29T08:30:21.289Z",
            "mother": {
                "name": "Sasha Sasha Pratiwi"
            },
            "employmentStatus": "cupidatat deserunt do Lorem",
            "address": null,
            "nip": "77.126.64.242"
        },
        {
            "id": "68f44e907ede1684986ca3ef",
            "user": {
                "id": "68f44e907ede1684986ca3ef",
                "name": "Fauzan Gifari",
                "email": "00001@sekolah.sch.id",
                "image": "988x1264/b79f5c/71dccb.jpg"
            },
            "gender": "Reference not found $ref: #/definitions/5469697",
            "birthPlace": null,
            "birthDate": "2026-01-29T08:30:21.290Z",
            "mother": null,
            "employmentStatus": null,
            "address": null,
            "nip": "191.63.62.172"
        }
    ]
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🔴500Server Error
Modified at 2026-01-12 07:16:03
Previous
Get User Login History
Next
Retrieve an Existing Staff
Built with