ERP
  1. student-attendence
ERP
  • master
    • caste
      • create
      • update
      • delete
      • read
    • organisation
      • read
      • update
      • create
      • delete
    • student-type
      • create
      • update
      • delete
      • read
    • nationality
      • view
      • create
      • update
      • delete
    • states
      • read
      • create
      • update
      • delete
    • subject
      • create
      • view
      • update
      • delete
    • classes
      • view
      • create
      • update
      • delete
    • section
      • view
      • update
      • create
      • delete
    • country
      • view
      • create
      • update
      • delete
    • districts
      • view
      • create
      • update
      • delete
    • religion
      • view
      • create
      • update
      • delete
    • staff-designation
      • view
      • create
      • update
      • del
    • holidays
      • view
      • create
      • update
      • delete
    • academic-year
      • create
      • update
      • delete
      • read
    • transport
      • vechile
        • read
        • create
        • update
        • delete
      • bus-drivers
        • read
        • create
        • update
        • delete
      • trip
        • read
        • create
        • update
        • delete
      • bus-route
        • read
        • create
        • update
        • delete
    • terms
      • read
      • create
      • udate
      • delete
    • fees
      • read
      • create
      • update
      • delete
  • staff
    • reports
      • read
      • create
      • update
      • delete
    • staff
      • read
      • create
      • update
      • del
    • staff-attendence
      • read
      • create
      • update
      • delete
    • salaries
      • read
      • create
      • update
      • delete
  • students
    • student-reports
      • create
      • update
      • delete
      • read
    • enquiries
      • create
      • update
      • delete
      • read
    • student-attendence
      • read
        GET
      • create
        POST
      • update
        PUT
      • delete
        DELETE
    • certificates
      • read
      • create
      • update
      • delete
    • admission
      • read
      • create
      • update
      • delete
    • dairy
      • read
      • create
      • update
      • delete
  • transaction
    • expenditures
      • read
      • create
      • update
      • delete
    • fee-collections
      • read
      • create
      • update
      • delete
  1. student-attendence

update

Developing
PUT
http://localhost:1337/api/student/attendances/id
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://localhost:1337/api/student/attendances/id' \
--header 'Content-Type: application/json' \
--data-raw '{
  "data": {
    "firstName": "string",
    "lastName": "string",
    "gender": "male",
    "rollNumber": 0,
    "dateOfBirth": "2025-05-05",
    "email": "user@example.com",
    "phone": "string",
    "studentId": "string",
    "parents": {
      "id": 0,
      "fatherName": "string",
      "motherName": "string",
      "guardianName": "string",
      "guardianRelation": "string",
      "Phone": "string",
      "guardianEmail": "user@example.com"
    },
    "fee": {
      "id": 0,
      "dueDate": "2025-05-05",
      "paidStatus": "Pending"
    },
    "address": [
      {
        "id": 0,
        "currentAddress": "string",
        "permanentAddress": "string",
        "city": "string",
        "state": "string",
        "district": "string",
        "zipCode": "string"
      }
    ],
    "bloodgroup": "string",
    "enquiry": "string or id",
    "attendances": [
      "string or id",
      "string or id"
    ],
    "certificates": [
      "string or id",
      "string or id"
    ],
    "dairies": [
      "string or id",
      "string or id"
    ],
    "class": "string or id",
    "caste": "string or id",
    "religion": "string or id",
    "nationality": "string or id",
    "fee_collections": [
      "string or id",
      "string or id"
    ],
    "locale": "string",
    "localizations": [
      "string or id",
      "string or id"
    ]
  }
}'
Response Response Example
{}

Request

Body Params application/json
staffstatus
string 
required
lateTime
string 
required
remarks
string 
required
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
create
Next
delete
Built with